
          * {
          }
          .swal-icon--error {
            overflow-x: hidden;
            border-color: #f27474;
            -webkit-animation: animateErrorIcon 0.5s;
            animation: animateErrorIcon 0.5s;
          }
          .swal-icon--error__x-mark {
            position: relative;
            display: block;
            -webkit-animation: animateXMark 0.5s;
            animation: animateXMark 0.5s;
          }
          .swal-icon--error__line {
            position: absolute;
            height: 5px;
            width: 47px;
            background-color: #f27474;
            display: block;
            top: 37px;
            border-radius: 2px;
          }
          .swal-icon--error__line--left {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            left: 17px;
          }
          .swal-icon--error__line--right {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            right: 16px;
          }
          @-webkit-keyframes animateErrorIcon {
            0% {
              -webkit-transform: rotateX(100deg);
              transform: rotateX(100deg);
              opacity: 0;
            }
            to {
              -webkit-transform: rotateX(0deg);
              transform: rotateX(0deg);
              opacity: 1;
            }
          }
          @keyframes animateErrorIcon {
            0% {
              -webkit-transform: rotateX(100deg);
              transform: rotateX(100deg);
              opacity: 0;
            }
            to {
              -webkit-transform: rotateX(0deg);
              transform: rotateX(0deg);
              opacity: 1;
            }
          }
          @-webkit-keyframes animateXMark {
            0% {
              -webkit-transform: scale(0.4);
              transform: scale(0.4);
              margin-top: 26px;
              opacity: 0;
            }
            50% {
              -webkit-transform: scale(0.4);
              transform: scale(0.4);
              margin-top: 26px;
              opacity: 0;
            }
            80% {
              -webkit-transform: scale(1.15);
              transform: scale(1.15);
              margin-top: -6px;
            }
            to {
              -webkit-transform: scale(1);
              transform: scale(1);
              margin-top: 0;
              opacity: 1;
            }
          }
          @keyframes animateXMark {
            0% {
              -webkit-transform: scale(0.4);
              transform: scale(0.4);
              margin-top: 26px;
              opacity: 0;
            }
            50% {
              -webkit-transform: scale(0.4);
              transform: scale(0.4);
              margin-top: 26px;
              opacity: 0;
            }
            80% {
              -webkit-transform: scale(1.15);
              transform: scale(1.15);
              margin-top: -6px;
            }
            to {
              -webkit-transform: scale(1);
              transform: scale(1);
              margin-top: 0;
              opacity: 1;
            }
          }
          .swal-icon--warning {
            border-color: #f8bb86;
            -webkit-animation: pulseWarning 0.75s infinite alternate;
            animation: pulseWarning 0.75s infinite alternate;
          }
          .swal-icon--warning__body {
            width: 5px;
            height: 47px;
            top: 10px;
            border-radius: 2px;
            margin-left: -2px;
          }
          .swal-icon--warning__body,
          .swal-icon--warning__dot {
            position: absolute;
            left: 50%;
            background-color: #f8bb86;
          }
          .swal-icon--warning__dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-left: -4px;
            bottom: -11px;
          }
          @-webkit-keyframes pulseWarning {
            0% {
              border-color: #f8d486;
            }
            to {
              border-color: #f8bb86;
            }
          }
          @keyframes pulseWarning {
            0% {
              border-color: #f8d486;
            }
            to {
              border-color: #f8bb86;
            }
          }
          .swal-icon--success {
            border-color: #a5dc86;
          }
          .swal-icon--success:after,
          .swal-icon--success:before {
            content: "";
            border-radius: 50%;
            position: absolute;
            width: 60px;
            height: 120px;
            background: #fff;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
          }
          .swal-icon--success:before {
            border-radius: 120px 0 0 120px;
            top: -7px;
            left: -33px;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transform-origin: 60px 60px;
            transform-origin: 60px 60px;
          }
          .swal-icon--success:after {
            border-radius: 0 120px 120px 0;
            top: -11px;
            left: 30px;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transform-origin: 0 60px;
            transform-origin: 0 60px;
            -webkit-animation: rotatePlaceholder 4.25s ease-in;
            animation: rotatePlaceholder 4.25s ease-in;
          }
          .swal-icon--success__ring {
            width: 80px;
            height: 80px;
            border: 4px solid hsla(98, 55%, 69%, 0.2);
            border-radius: 50%;
            box-sizing: content-box;
            position: absolute;
            left: -4px;
            top: -4px;
            z-index: 2;
          }
          .swal-icon--success__hide-corners {
            width: 5px;
            height: 90px;
            background-color: #fff;
            padding: 1px;
            position: absolute;
            left: 28px;
            top: 8px;
            z-index: 1;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
          }
          .swal-icon--success__line {
            height: 5px;
            background-color: #a5dc86;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 2;
          }
          .swal-icon--success__line--tip {
            width: 25px;
            left: 14px;
            top: 46px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-animation: animateSuccessTip 0.75s;
            animation: animateSuccessTip 0.75s;
          }
          .swal-icon--success__line--long {
            width: 47px;
            right: 8px;
            top: 38px;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-animation: animateSuccessLong 0.75s;
            animation: animateSuccessLong 0.75s;
          }
          @-webkit-keyframes rotatePlaceholder {
            0% {
              -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
            }
            5% {
              -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
            }
            12% {
              -webkit-transform: rotate(-405deg);
              transform: rotate(-405deg);
            }
            to {
              -webkit-transform: rotate(-405deg);
              transform: rotate(-405deg);
            }
          }
          @keyframes rotatePlaceholder {
            0% {
              -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
            }
            5% {
              -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
            }
            12% {
              -webkit-transform: rotate(-405deg);
              transform: rotate(-405deg);
            }
            to {
              -webkit-transform: rotate(-405deg);
              transform: rotate(-405deg);
            }
          }
          @-webkit-keyframes animateSuccessTip {
            0% {
              width: 0;
              left: 1px;
              top: 19px;
            }
            54% {
              width: 0;
              left: 1px;
              top: 19px;
            }
            70% {
              width: 50px;
              left: -8px;
              top: 37px;
            }
            84% {
              width: 17px;
              left: 21px;
              top: 48px;
            }
            to {
              width: 25px;
              left: 14px;
              top: 45px;
            }
          }
          @keyframes animateSuccessTip {
            0% {
              width: 0;
              left: 1px;
              top: 19px;
            }
            54% {
              width: 0;
              left: 1px;
              top: 19px;
            }
            70% {
              width: 50px;
              left: -8px;
              top: 37px;
            }
            84% {
              width: 17px;
              left: 21px;
              top: 48px;
            }
            to {
              width: 25px;
              left: 14px;
              top: 45px;
            }
          }
          @-webkit-keyframes animateSuccessLong {
            0% {
              width: 0;
              right: 46px;
              top: 54px;
            }
            65% {
              width: 0;
              right: 46px;
              top: 54px;
            }
            84% {
              width: 55px;
              right: 0;
              top: 35px;
            }
            to {
              width: 47px;
              right: 8px;
              top: 38px;
            }
          }
          @keyframes animateSuccessLong {
            0% {
              width: 0;
              right: 46px;
              top: 54px;
            }
            65% {
              width: 0;
              right: 46px;
              top: 54px;
            }
            84% {
              width: 55px;
              right: 0;
              top: 35px;
            }
            to {
              width: 47px;
              right: 8px;
              top: 38px;
            }
          }
          .swal-icon--info {
            border-color: #c9dae1;
          }
          .swal-icon--info:before {
            width: 5px;
            height: 29px;
            bottom: 17px;
            border-radius: 2px;
            margin-left: -2px;
          }
          .swal-icon--info:after,
          .swal-icon--info:before {
            content: "";
            position: absolute;
            left: 50%;
            background-color: #c9dae1;
          }
          .swal-icon--info:after {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-left: -3px;
            top: 19px;
          }
          .swal-icon {
            width: 80px;
            height: 80px;
            border-width: 4px;
            border-style: solid;
            border-radius: 50%;
            padding: 0;
            position: relative;
            box-sizing: content-box;
            margin: 20px auto;
          }
          .swal-icon:first-child {
            margin-top: 32px;
          }
          .swal-icon--custom {
            width: auto;
            height: auto;
            max-width: 100%;
            border: none;
            border-radius: 0;
          }
          .swal-icon img {
            max-width: 100%;
            max-height: 100%;
          }
          .swal-title {
            color: rgba(0, 0, 0, 0.65);
            font-weight: 600;
            text-transform: none;
            position: relative;
            display: block;
            padding: 13px 16px;
            font-size: 27px;
            line-height: normal;
            text-align: center;
            margin-bottom: 0;
          }
          .swal-title:first-child {
            margin-top: 26px;
          }
          .swal-title:not(:first-child) {
            padding-bottom: 0;
          }
          .swal-title:not(:last-child) {
            margin-bottom: 13px;
          }
          .swal-text {
            font-size: 16px;
            position: relative;
            float: none;
            line-height: normal;
            vertical-align: top;
            text-align: left;
            display: inline-block;
            margin: 0;
            padding: 0 10px;
            font-weight: 400;
            color: rgba(0, 0, 0, 0.64);
            max-width: calc(100% - 20px);
            overflow-wrap: break-word;
            box-sizing: border-box;
          }
          .swal-text:first-child {
            margin-top: 45px;
          }
          .swal-text:last-child {
            margin-bottom: 45px;
          }
          .swal-footer {
            text-align: right;
            padding-top: 13px;
            margin-top: 13px;
            padding: 13px 16px;
            border-radius: inherit;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
          }
          .swal-button-container {
            margin: 5px;
            display: inline-block;
            position: relative;
          }
          .swal-button {
            background-color: #7cd1f9;
            color: #fff;
            border: none;
            box-shadow: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 24px;
            margin: 0;
            cursor: pointer;
          }
          .swal-button[not:disabled]:hover {
            background-color: #78cbf2;
          }
          .swal-button:active {
            background-color: #70bce0;
          }
          .swal-button:focus {
            outline: none;
            box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(43, 114, 165, 0.29);
          }
          .swal-button[disabled] {
            opacity: 0.5;
            cursor: default;
          }
          .swal-button::-moz-focus-inner {
            border: 0;
          }
          .swal-button--cancel {
            color: #555;
            background-color: #efefef;
          }
          .swal-button--cancel[not:disabled]:hover {
            background-color: #e8e8e8;
          }
          .swal-button--cancel:active {
            background-color: #d7d7d7;
          }
          .swal-button--cancel:focus {
            box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(116, 136, 150, 0.29);
          }
          .swal-button--danger {
            background-color: #e64942;
          }
          .swal-button--danger[not:disabled]:hover {
            background-color: #df4740;
          }
          .swal-button--danger:active {
            background-color: #cf423b;
          }
          .swal-button--danger:focus {
            box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(165, 43, 43, 0.29);
          }
          .swal-content {
            padding: 0 20px;
            margin-top: 20px;
            font-size: medium;
          }
          .swal-content:last-child {
            margin-bottom: 20px;
          }
          .swal-content__input,
          .swal-content__textarea {
            -webkit-appearance: none;
            background-color: #fff;
            border: none;
            font-size: 14px;
            display: block;
            box-sizing: border-box;
            width: 100%;
            border: 1px solid rgba(0, 0, 0, 0.14);
            padding: 10px 13px;
            border-radius: 2px;
            transition: border-color 0.2s;
          }
          .swal-content__input:focus,
          .swal-content__textarea:focus {
            outline: none;
            border-color: #6db8ff;
          }
          .swal-content__textarea {
            resize: vertical;
          }
          .swal-button--loading {
            color: transparent;
          }
          .swal-button--loading ~ .swal-button__loader {
            opacity: 1;
          }
          .swal-button__loader {
            position: absolute;
            height: auto;
            width: 43px;
            z-index: 2;
            left: 50%;
            top: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            text-align: center;
            pointer-events: none;
            opacity: 0;
          }
          .swal-button__loader div {
            display: inline-block;
            float: none;
            vertical-align: baseline;
            width: 9px;
            height: 9px;
            padding: 0;
            border: none;
            margin: 2px;
            opacity: 0.4;
            border-radius: 7px;
            background-color: hsla(0, 0%, 100%, 0.9);
            transition: background 0.2s;
            -webkit-animation: swal-loading-anim 1s infinite;
            animation: swal-loading-anim 1s infinite;
          }
          .swal-button__loader div:nth-child(3n + 2) {
            -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
          }
          .swal-button__loader div:nth-child(3n + 3) {
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
          }
          @-webkit-keyframes swal-loading-anim {
            0% {
              opacity: 0.4;
            }
            20% {
              opacity: 0.4;
            }
            50% {
              opacity: 1;
            }
            to {
              opacity: 0.4;
            }
          }
          @keyframes swal-loading-anim {
            0% {
              opacity: 0.4;
            }
            20% {
              opacity: 0.4;
            }
            50% {
              opacity: 1;
            }
            to {
              opacity: 0.4;
            }
          }
          .swal-overlay {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 0;
            overflow-y: auto;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 10000;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
          }
          .swal-overlay:before {
            content: " ";
            display: inline-block;
            vertical-align: middle;
            height: 100%;
          }
          .swal-overlay--show-modal {
            opacity: 1;
            pointer-events: auto;
          }
          .swal-overlay--show-modal .swal-modal {
            opacity: 1;
            pointer-events: auto;
            box-sizing: border-box;
            -webkit-animation: showSweetAlert 0.3s;
            animation: showSweetAlert 0.3s;
            will-change: transform;
          }
          .swal-modal {
            width: 478px;
            opacity: 0;
            pointer-events: none;
            background-color: #fff;
            text-align: center;
            border-radius: 5px;
            position: static;
            margin: 20px auto;
            display: inline-block;
            vertical-align: middle;
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
            z-index: 10001;
            transition: opacity 0.2s, -webkit-transform 0.3s;
            transition: transform 0.3s, opacity 0.2s;
            transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
          }
          @media (max-width: 500px) {
            .swal-modal {
              width: calc(100% - 20px);
            }
          }
          @-webkit-keyframes showSweetAlert {
            0% {
              -webkit-transform: scale(1);
              transform: scale(1);
            }
            1% {
              -webkit-transform: scale(0.5);
              transform: scale(0.5);
            }
            45% {
              -webkit-transform: scale(1.05);
              transform: scale(1.05);
            }
            80% {
              -webkit-transform: scale(0.95);
              transform: scale(0.95);
            }
            to {
              -webkit-transform: scale(1);
              transform: scale(1);
            }
          }
          @keyframes showSweetAlert {
            0% {
              -webkit-transform: scale(1);
              transform: scale(1);
            }
            1% {
              -webkit-transform: scale(0.5);
              transform: scale(0.5);
            }
            45% {
              -webkit-transform: scale(1.05);
              transform: scale(1.05);
            }
            80% {
              -webkit-transform: scale(0.95);
              transform: scale(0.95);
            }
            to {
              -webkit-transform: scale(1);
              transform: scale(1);
            }
          }


          
          img.wp-smiley,
          img.emoji {
            display: inline !important;
            border: none !important;
            box-shadow: none !important;
            height: 1em !important;
            width: 1em !important;
            margin: 0 0.07em !important;
            vertical-align: -0.1em !important;
            background: none !important;
            padding: 0 !important;
          }

        

      /* === organization === */
      .crowdfundy-org .content-body {
        background-color: ;
      }

      .crowdfundy-org .organization__details {
        background-color: ;
      }

      .organization__info .organization__info-name {
        color: ;
      }

      .organization__info .organization__info-address {
        color: ;
      }

      .organization__social .organization__social-title {
        color: ;
      }

      .organization__social-item .organization__social-item-title {
        color: ;
      }

      .organization__social-item .organization__social-item-subtitle {
        color: ;
      }

      .template h4.organization__details-title {
        color: ;
        font-size: 20pxpx;
        text-transform: ;
      }

      .organization__details-description p > span {
        color: !important;
      }

      .organization__slider .slick-track .slick-slide img {
        height: px;
      }

      .organization__info-logo,
      .organization__info-logo .organization__info-logo-img {
        width: px;
        height: px;
      }

      .template .organization__social-item-icon {
        font-size: px;
      }

      .organization__campaigns .organization__campaigns-title {
        font-size: px;
        color: ;
        text-transform: ;
      }

      .organization__campaigns .campaign-card {
        background-color: ;
      }

      .organization__campaigns .campaign-card:hover {
        background-color: ;
      }

      .organization__campaigns .campaign-card__top {
        background-color: ;
      }

      .organization__campaigns .campaign-card__title {
        color: ;
        font-size: px;
      }

      .organization__campaigns .campaign-card__description {
        color: ;
        font-size: px;
      }

      .organization__campaigns .progress--slim {
        background-color: ;
      }

      .organization__campaigns .progress__bar {
        background-color: ;
      }

      .organization__campaigns .campaign-card__amount {
        color: ;
        font-size: px;
      }
      .organization__campaigns .campaign-card__amount strong {
        color: ;
        font-size: px;
      }

      .organization-all-camp-btn {
        background-color: ;
        color: ;
        border-color: ;
        border-top-left-radius: px;
        border-top-right-radius: px;
        border-bottom-right-radius: px;
        border-bottom-left-radius: px;
        padding: px;
      }

      .organization-all-camp-btn:hover {
        background-color: ;
        color: ;
        border-color: ;
      }

      /* === all campaigns === */
      .all-camps .content-body {
        background-color: ;
      }

      .all-campaign__filter-search-icon {
        color: ;
      }

      .all-campaign__filter-search .all-campaign__filter-search-input {
        border-color: ;
      }

      .all-campaign__filter-search
        .all-campaign__filter-search-input::-webkit-input-placeholder {
        color: ;
      }
      .all-campaign__filter-search
        .all-campaign__filter-search-input::-moz-placeholder {
        color: ;
      }
      .all-campaign__filter-search
        .all-campaign__filter-search-input::-ms-input-placeholder {
        color: ;
      }

      .all-campaign .all-campaign__title {
        font-size: px;
        color: ;
      }

      .organization__details-description p {
        font-size: px;
      }

      .all-campaign__filter {
        background-color: ;
      }

      #allCampaignSearch {
        color: ;
        background-color: ;
        border-color: ;
        font-size: px;
      }

      #allCampaignSearch:hover {
        color: ;
        background-color: ;
        border-color: ;
      }

      .all-campaign .campaign-card {
        background-color: ;
      }

      .all-campaign .campaign-card:hover {
        background-color: ;
      }

      .all-campaign .campaign-card__img {
        width: px;
      }

      .all-campaign .campaign-card__title {
        color: ;
        font-size: px;
      }

      .all-campaign .campaign-card__description {
        color: ;
        font-size: px;
      }

      .all-campaign .progress--slim {
        background-color: ;
      }

      .all-campaign .progress__bar--secondary {
        background-color: ;
      }

      .all-campaign .campaign-card__amount {
        color: ;
        font-size: px;
      }
      .all-campaign .campaign-card__amount strong {
        color: ;
        font-size: px;
      }

      #crowdfundly-all-camp-loadmore {
        background-color: ;
        color: ;
        border-color: ;
      }
      #crowdfundly-all-camp-loadmore:hover {
        background-color: ;
        color: ;
        border-color: ;
      }

      /* === single campaign === */
      .crowdfundly-single-camp .content-body {
        background-color: ;
      }

      .gallery-slider .slick-current.slick-active,
      .campaign__view .thumbnails .slide iframe,
      .campaign__view .thumbnails .slide img {
        background-color: ;
      }

      .campaign__view-slider .slick-active .slide__inner {
        background-color: ;
      }

      .gallery-slider-nav .slick-prev:before,
      .gallery-slider-nav .slick-next:before {
        color: ;
      }

      .campaign__title.campaign__title--status {
        color: ;
        font-size: px;
        text-transform: ;
      }

      .campaign__status-title {
        color: ;
      }

      .campaign__fundraiser-name {
        font-size: px;
        color: ;
      }

      .campaign__fundraiser-name .campaign__fundraiser-name-link {
        color: ;
        font-size: px;
      }

      .campaign__funding .funding-goal {
        background-color: ;
      }

      .funding-goal .funding-card__value,
      .funding-goal .funding-card__lavel {
        color: ;
      }

      .campaign__funding .fund-raised {
        background-color: ;
      }

      .fund-raised .funding-card__value,
      .fund-raised .funding-card__lavel {
        color: ;
      }

      .campaign__funding .funding-duration {
        background-color: ;
      }

      .funding-duration .funding-card__value,
      .funding-duration .funding-card__lavel {
        color: ;
      }

      .campaign__details .progress.progress--sm {
        background-color: ;
      }
      .campaign__details .progress__bar.progress__bar--secondary {
        background-color: ;
      }

      .campaign__actions-btn.donation-btn {
        background-color: !important;
        color: !important;
        border-color: !important;
        text-transform: ;
        font-size: px;
      }
      .campaign__actions-btn.donation-btn:hover {
        background-color: !important;
        color: !important;
        border-color: !important;
      }
      #share-campaign-btn,
      #set-reminder-btn {
        background-color: ;
        color: ;
        border-color: ;
      }
      #share-campaign-btn:hover,
      #set-reminder-btn:hover {
        background-color: ;
        color: ;
        border-color: ;
      }

      /* .back-modal.show-modal, */
      .g-modal__content,
      .donate__inner,
      .back-modal-inner {
        background-color: ;
      }

      .donate__amount-inner {
        background-color: ;
        color: ;
      }

      .donate__amount-inner:hover {
        background-color: ;
        border-color: ;
      }

      .form-group__amount,
      .donate__custom-amount {
        background-color: ;
      }
      .form-group__amount,
      .form-group__amount:focus-within,
      .donate__custom-amount.focus,
      .donate__custom-amount:focus-within {
        background-color: ;
        border-color: ;
      }

      #reward-contribution-btn,
      #crowdfundly-donate-btn {
        background-color: ;
        color: ;
        border-color: ;
        font-size: px;
      }

      .campaign__view-tab .g-tab {
        background-color: ;
      }

      #campaignTab .nav-link,
      #campaignTab .nav-link span {
        color: ;
        font-size: px;
      }

      #campaignTab .nav-link.active {
        color: ;
        border-color: ;
      }
      #campaignTab .g-tab__nav-item:not(.active) .nav-link.active {
        background-color: ;
      }

      .tab-content.g-tab__body {
        background-color: ;
      }

      .offer-card,
      .tab-pane .activity,
      .tab-pane .endorsement,
      .tab-pane .donor-card {
        background-color: ;
      }

      #crowdfundly-activites-load-more {
        background-color: ;
        color: ;
        border-color: ;
        font-size: px;
      }

      .campaign__view-related-title {
        color: ;
        font-size: px;
      }

      .crowdfundly-single-camp .campaign-card {
        background-color: ;
      }
      .crowdfundly-single-camp .campaign-card:hover {
        background-color: ;
      }

      .crowdfundly-single-camp .campaign-card__top {
        background-color: ;
      }

      .crowdfundly-single-camp .campaign-card__title {
        color: ;
        font-size: px;
      }

      .crowdfundly-single-camp .campaign-card__description {
        color: ;
        font-size: px;
      }

      .crowdfundly-single-camp .progress--slim {
        background-color: ;
      }

      .crowdfundly-single-camp .progress__bar--secondary {
        background-color: ;
      }

      .crowdfundly-single-camp .campaign-card__amount {
        color: ;
      }
      .crowdfundly-single-camp .campaign-card__amount strong {
        color: ;
      }
      .crowdfundly-single-camp .campaign-card__amount,
      .crowdfundly-single-camp .campaign-card__amount strong {
        font-size: px;
      }
  
      /*********** Easyjobs dynamic css started *************/
      .easyjobs-frontend-wrapper.easyjobs-landing-page {
        background-color: #f5f7fd;
        width: 100%;
        max-width: 100%;
        padding-top: 50px;
        padding-right: 50px;
        padding-bottom: 50px;
        padding-left: 50px;
      }

      .easyjobs-frontend-wrapper.easyjobs-landing-page .ej-header,
      .easyjobs-shortcode-wrapper.ej-template-classic .carrier__company,
      .easyjobs-frontend-wrapper.easyjobs-landing-page .about__company {
        background-color: fff;
        padding-top: 50px;
        padding-right: 50px;
        padding-bottom: 50px;
        padding-left: 50px;
      }

      .easyjobs-landing-page .ej-header .ej-company-info .info .name {
        font-size: 24px;
      }
      .easyjobs-landing-page .ej-header .ej-company-info .info .location {
        font-size: 14px;
      }

      .easyjobs-landing-page .ej-header .ej-header-tools .ej-btn,
      .easyjobs-shortcode-wrapper.ej-template-classic .carrier__company .button,
      .easyjobs-shortcode-wrapper.ej-template-elegant .ej-company-info .ej-btn {
        font-size: 14px;
        color: #fff;
        background-color: #2fc1e1;
      }
      .easyjobs-landing-page .ej-header .ej-header-tools .ej-btn:hover,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .carrier__company
        .button:hover,
      .easyjobs-shortcode-wrapper.ej-template-elegant
        .ej-company-info
        .ej-btn:hover {
        color: #fff;
        background-color: #1fb6d7;
      }
      .easyjobs-landing-page .ej-company-description,
      .easyjobs-landing-page .ej-company-description p,
      .easyjobs-landing-page .ej-company-description p span,
      .easyjobs-landing-page .ej-company-description ul li,
      .easyjobs-landing-page .ej-company-description a {
        font-size: 14px;
        color: #7d8091;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col {
        padding-top: 25px;
        padding-right: 30px;
        padding-bottom: 25px;
        padding-left: 25px;
        border-color: #f5f7fd;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-job-title {
        font-size: 24px;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-job-title
        a {
        color: #212529;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-job-title
        a:hover {
        color: #0056b3;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-job-list-info
        .ej-job-list-info-block {
        font-size: 14px;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-job-list-info
        .ej-job-list-info-block
        a {
        color: #0056b3;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-job-list-info
        .ej-job-list-info-block {
        color: #7d8091;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-deadline {
        font-size: 18px;
        color: #7d8091;
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-list-sub {
        font-size: 14px;
        color: #7d8091;
      }

      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-btn.ej-info-btn-light {
        font-size: 14px;
        color: #2fc1e1;
        background-color: rgba(47, 193, 225, 0.1);
      }

      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-list
        .ej-job-list-item
        .ej-job-list-item-inner
        .ej-job-list-item-col
        .ej-btn.ej-info-btn-light:hover {
        color: #fff;
        background-color: #2fc1e1;
      }

      .easyjobs-landing-page
        .ej-section
        .ej-section-title
        .ej-section-title-text {
        color: #2f323e;
        font-size: 32px;
      }
      .easyjobs-landing-page
        .ej-section
        .ej-section-title
        .ej-section-title-icon {
        color: #597dfc;
        background-color: rgba(89, 125, 252, 0.1);
      }
      /* Details page */

      .easyjobs-frontend-wrapper.easyjobs-single-page {
        background-color: #f5f7fd;
        width: 100%;
        max-width: 1400px;
        padding-top: 50px;
        padding-right: 50px;
        padding-bottom: 50px;
        padding-left: 50px;
      }

      .easyjobs-single-page
        .easyjobs-details
        .ej-job-header
        .ej-job-header-left
        .ej-job-overview,
      .easyjobs-shortcode-wrapper.ej-template-classic .job__more__details {
        background-color: #fff;
        padding-top: 50px;
        padding-right: 50px;
        padding-bottom: 50px;
        padding-left: 50px;
      }
      .easyjobs-single-page .ej-company-info .info .name {
        font-size: 24px;
      }

      .easyjobs-single-page.ej-company-info .info .location {
        font-size: 14px;
      }

      .easyjobs-single-page
        .easyjobs-details
        .ej-job-header
        .ej-job-header-left
        .ej-job-overview
        .ej-job-highlights
        .ej-job-highlights-item,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .job__more__details
        .infos
        .info
        span,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .job__more__details
        .infos
        .info
        p,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .ej-container
        div.job__more__details
        > p {
        font-size: 16px;
      }
      .easyjobs-single-page
        .easyjobs-details
        .ej-job-header
        .ej-job-header-left
        .ej-job-overview
        .ej-job-highlights
        .ej-job-highlights-item
        .ej-job-highlights-item-label,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .job__more__details
        .infos
        .info
        p,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .ej-container
        div.job__more__details
        > p
        i,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .ej-container
        div.job__more__details
        > p
        span {
        color: #1c2238;
      }
      .easyjobs-single-page.easyjobs-details
        .ej-job-header
        .ej-job-header-left
        .ej-job-overview
        .ej-job-highlights
        .ej-job-highlights-item
        .ej-job-highlights-item-value,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .job__more__details
        .infos
        .info
        span,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .ej-container
        div.job__more__details
        > p {
        color: #7d8091;
      }
      .easyjobs-single-page .ej-apply-link .ej-btn.ej-info-btn,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .job__more__details
        > a.button,
      .ej-template-elegant .ej-hero .job__infos__block .meta .button {
        font-size: 14px;
        background-color: #2fc1e1;
        color: #fff;
      }
      .easyjobs-single-page .ej-apply-link .ej-btn.ej-info-btn:hover,
      .easyjobs-shortcode-wrapper.ej-template-classic
        .job__more__details
        > a.button:hover,
      .ej-template-elegant .ej-hero .job__infos__block .meta .button:hover {
        background-color: #1fb6d7;
        color: #fff;
      }
      .easyjobs-single-page
        .easyjobs-details
        .ej-job-header
        .ej-job-header-left
        .ej-job-overview-footer
        .ej-social-share
        ul
        li
        a,
      .easyjobs-frontend-wrapper
        .easyjobs-shortcode-wrapper
        .job__more__details
        .share__options
        ul
        li
        a {
        width: 40px;
        height: 40px;
      }
      .easyjobs-single-page
        .easyjobs-details
        .ej-job-header
        .ej-job-header-left
        .ej-job-overview-footer
        .ej-social-share
        ul
        li
        a
        svg {
        width: 18px;
        height: 18px;
      }
      .easyjobs-frontend-wrapper
        .easyjobs-shortcode-wrapper
        .job__more__details
        .share__options
        ul
        li
        a
        i {
        font-size: 18px;
        line-height: 40px;
      }

      .easyjobs-single-page .easyjobs-details .ej-content-block h1 {
        font-size: 32px;
      }
      .easyjobs-single-page .easyjobs-details .ej-content-block h2 {
        font-size: 28px;
      }
      .easyjobs-single-page .easyjobs-details .ej-content-block h3 {
        font-size: 24px;
      }
      .easyjobs-single-page .easyjobs-details .ej-content-block h4 {
        font-size: 21px;
      }
      .easyjobs-single-page .easyjobs-details .ej-content-block h5 {
        font-size: 18px;
      }
      .easyjobs-single-page .easyjobs-details .ej-content-block h6 {
        font-size: 16px;
      }
      .easyjobs-single-page .easyjobs-details .ej-content-block p,
      .easyjobs-single-page .easyjobs-details .ej-content-block ul li,
      .easyjobs-single-page .easyjobs-details .ej-content-block ol li,
      .easyjobs-single-page .easyjobs-details .ej-label {
        font-size: 14px;
      }
      .easyjobs-single-page
        .ej-section
        .ej-section-title
        .ej-section-title-text {
        font-size: 32px;
      }
      /*Job filter css*/
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-filter-wrap
        .ej-job-filter-form
        .ej-info-btn-light {
        font-size: 14px;
        color: #ff9635;
        background-color: rgba(255, 150, 53, 0.1);
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-filter-wrap
        .ej-job-filter-form
        .ej-info-btn-light:hover {
        color: #ff9635;
        background-color: rgba(255, 150, 53, 0.1);
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-filter-wrap
        .ej-job-filter-form
        .ej-danger-btn {
        font-size: 14px;
        color: #ff5f74;
        background-color: rgba(255, 95, 116, 0.1);
      }
      .easyjobs-landing-page
        .easyjobs-shortcode-wrapper
        .ej-job-filter-wrap
        .ej-job-filter-form
        .ej-danger-btn:hover {
        color: #ff5f74;
        background-color: rgba(255, 95, 116, 0.1);
      }

      /****** end easy jobs dynamic css *******/
    

   
    
      .recentcomments a {
        display: inline !important;
        padding: 0 !important;
        margin: 0 !important;
      }
    

      .cLD4YbNqIJl6u2ZcPFOp {
        background: #fff;
        box-shadow: 3px 3px 8px 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        display: flex;
        justify-content: center;
        color: #152c5b;
        align-items: center;
        border-radius: 1rem;
        min-width: 30vw;
        align-items: center;
      }
    
      .introjs-overlay {
        position: absolute;
        box-sizing: content-box;
        z-index: 999999;
        opacity: 0;
        transition: all 0.3s ease-out;
      }
      .introjs-showElement {
        z-index: 9999999 !important;
      }
      tr.introjs-showElement > td {
        z-index: 9999999 !important;
        position: relative;
      }
      tr.introjs-showElement > th {
        z-index: 9999999 !important;
        position: relative;
      }
      .introjs-disableInteraction {
        z-index: 99999999 !important;
        position: absolute;
        background-color: #fff;
        opacity: 0;
      }
      .introjs-relativePosition {
        position: relative;
      }
      .introjs-helperLayer {
        box-sizing: content-box;
        position: absolute;
        z-index: 9999998;
        border-radius: 4px;
        transition: all 0.3s ease-out;
      }
      .introjs-helperLayer * {
        box-sizing: content-box;
      }
      .introjs-helperLayer :before {
        box-sizing: content-box;
      }
      .introjs-helperLayer :after {
        box-sizing: content-box;
      }
      .introjs-tooltipReferenceLayer {
        font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji",
          Helvetica, Arial, sans-serif;
        box-sizing: content-box;
        position: absolute;
        visibility: hidden;
        z-index: 100000000;
        background-color: rgba(0, 0, 0, 0);
        transition: all 0.3s ease-out;
      }
      .introjs-tooltipReferenceLayer * {
        font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji",
          Helvetica, Arial, sans-serif;
      }
      .introjs-helperNumberLayer {
        font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji",
          Helvetica, Arial, sans-serif;
        color: #9e9e9e;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
      }
      .introjs-arrow {
        border: 5px solid rgba(0, 0, 0, 0);
        content: "";
        position: absolute;
      }
      .introjs-arrow.top {
        top: -10px;
        left: 10px;
        border-bottom-color: #fff;
      }
      .introjs-arrow.top-right {
        top: -10px;
        right: 10px;
        border-bottom-color: #fff;
      }
      .introjs-arrow.top-middle {
        top: -10px;
        left: 50%;
        margin-left: -5px;
        border-bottom-color: #fff;
      }
      .introjs-arrow.right {
        right: -10px;
        top: 10px;
        border-left-color: #fff;
      }
      .introjs-arrow.right-bottom {
        bottom: 10px;
        right: -10px;
        border-left-color: #fff;
      }
      .introjs-arrow.bottom {
        bottom: -10px;
        left: 10px;
        border-top-color: #fff;
      }
      .introjs-arrow.bottom-right {
        bottom: -10px;
        right: 10px;
        border-top-color: #fff;
      }
      .introjs-arrow.bottom-middle {
        bottom: -10px;
        left: 50%;
        margin-left: -5px;
        border-top-color: #fff;
      }
      .introjs-arrow.left {
        left: -10px;
        top: 10px;
        border-right-color: #fff;
      }
      .introjs-arrow.left-bottom {
        left: -10px;
        bottom: 10px;
        border-right-color: #fff;
      }
      .introjs-tooltip {
        box-sizing: content-box;
        position: absolute;
        visibility: visible;
        background-color: #fff;
        min-width: 250px;
        max-width: 300px;
        border-radius: 5px;
        box-shadow: 0 3px 30px rgba(33, 33, 33, 0.3);
        transition: opacity 0.1s ease-out;
      }
      .introjs-tooltiptext {
        padding: 20px;
      }
      .introjs-dontShowAgain {
        padding-left: 20px;
        padding-right: 20px;
      }
      .introjs-dontShowAgain input {
        padding: 0;
        margin: 0;
        margin-bottom: 2px;
        display: inline;
        width: 10px;
        height: 10px;
      }
      .introjs-dontShowAgain label {
        font-size: 14px;
        display: inline-block;
        font-weight: 400;
        margin: 0 0 0 5px;
        padding: 0;
        background-color: #fff;
        color: #616161;
        -webkit-user-select: none;
        user-select: none;
      }
      .introjs-tooltip-title {
        font-size: 18px;
        width: 90%;
        min-height: 1.5em;
        margin: 0;
        padding: 0;
        font-weight: 700;
        line-height: 1.5;
      }
      .introjs-tooltip-header {
        position: relative;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        min-height: 1.5em;
      }
      .introjs-tooltipbuttons {
        border-top: 1px solid #e0e0e0;
        padding: 10px;
        text-align: right;
        white-space: nowrap;
      }
      .introjs-tooltipbuttons:after {
        content: "";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
      }
      .introjs-button {
        box-sizing: content-box;
        position: relative;
        overflow: visible;
        padding: 0.5rem 1rem;
        border: 1px solid #bdbdbd;
        text-decoration: none;
        text-shadow: 1px 1px 0 #fff;
        font-size: 14px;
        color: #424242;
        white-space: nowrap;
        cursor: pointer;
        outline: 0;
        background-color: #f4f4f4;
        border-radius: 0.2em;
        zoom: 1;
        display: inline;
      }
      .introjs-button:hover {
        outline: 0;
        text-decoration: none;
        border-color: #9e9e9e;
        background-color: #e0e0e0;
        color: #212121;
      }
      .introjs-button:focus {
        outline: 0;
        text-decoration: none;
        background-color: #eee;
        box-shadow: 0 0 0 0.2rem rgba(158, 158, 158, 0.5);
        border: 1px solid #616161;
        color: #212121;
      }
      .introjs-button:active {
        outline: 0;
        text-decoration: none;
        background-color: #e0e0e0;
        border-color: #9e9e9e;
        color: #212121;
      }
      .introjs-button::-moz-focus-inner {
        padding: 0;
        border: 0;
      }
      .introjs-skipbutton {
        position: absolute;
        top: 0;
        right: 0;
        display: inline-block;
        width: 45px;
        height: 45px;
        line-height: 45px;
        color: #616161;
        font-size: 22px;
        cursor: pointer;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
      }
      .introjs-skipbutton:focus,
      .introjs-skipbutton:hover {
        color: #212121;
        outline: 0;
        text-decoration: none;
      }
      .introjs-prevbutton {
        float: left;
      }
      .introjs-nextbutton {
        float: right;
      }
      .introjs-disabled {
        color: #9e9e9e;
        border-color: #bdbdbd;
        box-shadow: none;
        cursor: default;
        background-color: #f4f4f4;
        background-image: none;
        text-decoration: none;
      }
      .introjs-disabled:focus,
      .introjs-disabled:hover {
        color: #9e9e9e;
        border-color: #bdbdbd;
        box-shadow: none;
        cursor: default;
        background-color: #f4f4f4;
        background-image: none;
        text-decoration: none;
      }
      .introjs-hidden {
        display: none;
      }
      .introjs-bullets {
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
      }
      .introjs-bullets ul {
        box-sizing: content-box;
        clear: both;
        margin: 0 auto 0;
        padding: 0;
        display: inline-block;
      }
      .introjs-bullets ul li {
        box-sizing: content-box;
        list-style: none;
        float: left;
        margin: 0 2px;
      }
      .introjs-bullets ul li a {
        transition: width 0.1s ease-in;
        box-sizing: content-box;
        display: block;
        width: 6px;
        height: 6px;
        background: #ccc;
        border-radius: 10px;
        text-decoration: none;
        cursor: pointer;
      }
      .introjs-bullets ul li a:focus,
      .introjs-bullets ul li a:hover {
        width: 15px;
        background: #999;
        text-decoration: none;
        outline: 0;
      }
      .introjs-bullets ul li a.active {
        width: 15px;
        background: #999;
      }
      .introjs-progress {
        box-sizing: content-box;
        overflow: hidden;
        height: 10px;
        margin: 10px;
        border-radius: 4px;
        background-color: #e0e0e0;
      }
      .introjs-progressbar {
        box-sizing: content-box;
        float: left;
        width: 0%;
        height: 100%;
        font-size: 10px;
        line-height: 10px;
        text-align: center;
        background-color: #08c;
      }
      .introjsFloatingElement {
        position: absolute;
        height: 0;
        width: 0;
        left: 50%;
        top: 50%;
      }
      .introjs-fixedTooltip {
        position: fixed;
      }
      .introjs-hint {
        box-sizing: content-box;
        position: absolute;
        background: 0 0;
        width: 20px;
        height: 15px;
        cursor: pointer;
      }
      .introjs-hint:focus {
        border: 0;
        outline: 0;
      }
      .introjs-hint:hover > .introjs-hint-pulse {
        background-color: rgba(60, 60, 60, 0.57);
      }
      .introjs-hidehint {
        display: none;
      }
      .introjs-fixedhint {
        position: fixed;
      }
      @keyframes introjspulse {
        0% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
        }
        70% {
          transform: scale(1);
          box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
        }
        100% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        }
      }
      .introjs-hint-pulse {
        box-sizing: content-box;
        width: 15px;
        height: 15px;
        border-radius: 30px;
        background-color: rgba(136, 136, 136, 0.24);
        z-index: 10;
        position: absolute;
        transition: all 0.2s ease-out;
        animation: introjspulse 2s infinite;
      }
      .introjs-hint-no-anim .introjs-hint-pulse {
        animation: none;
      }
      .introjs-hint-dot {
        box-sizing: content-box;
        background: 0 0;
        border-radius: 60px;
        height: 50px;
        width: 50px;
        position: absolute;
        top: -18px;
        left: -18px;
        z-index: 1;
        opacity: 0;
      }
    
      /*!
  * Quill Editor v1.3.7
  * https://quilljs.com/
  * Copyright (c) 2014, Jason Chen
  * Copyright (c) 2013, salesforce.com
  */
      .ql-container {
        box-sizing: border-box;
        font-family: Helvetica, Arial, sans-serif;
        font-size: 13px;
        height: 100%;
        margin: 0px;
        position: relative;
      }
      .ql-container.ql-disabled .ql-tooltip {
        visibility: hidden;
      }
      .ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
        pointer-events: none;
      }
      .ql-clipboard {
        left: -100000px;
        height: 1px;
        overflow-y: hidden;
        position: absolute;
        top: 50%;
      }
      .ql-clipboard p {
        margin: 0;
        padding: 0;
      }
      .ql-editor {
        box-sizing: border-box;
        line-height: 1.42;
        height: 100%;
        outline: none;
        overflow-y: auto;
        padding: 12px 15px;
        tab-size: 4;
        -moz-tab-size: 4;
        text-align: left;
        white-space: pre-wrap;
        word-wrap: break-word;
      }
      .ql-editor > * {
        cursor: text;
      }
      .ql-editor p,
      .ql-editor ol,
      .ql-editor ul,
      .ql-editor pre,
      .ql-editor blockquote,
      .ql-editor h1,
      .ql-editor h2,
      .ql-editor h3,
      .ql-editor h4,
      .ql-editor h5,
      .ql-editor h6 {
        margin: 0;
        padding: 0;
        counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8
          list-9;
      }
      .ql-editor ol,
      .ql-editor ul {
        padding-left: 1.5em;
      }
      .ql-editor ol > li,
      .ql-editor ul > li {
        list-style-type: none;
      }
      .ql-editor ul > li::before {
        content: "•";
      }
      .ql-editor ul[data-checked="true"],
      .ql-editor ul[data-checked="false"] {
        pointer-events: none;
      }
      .ql-editor ul[data-checked="true"] > li *,
      .ql-editor ul[data-checked="false"] > li * {
        pointer-events: all;
      }
      .ql-editor ul[data-checked="true"] > li::before,
      .ql-editor ul[data-checked="false"] > li::before {
        color: #777;
        cursor: pointer;
        pointer-events: all;
      }
      .ql-editor ul[data-checked="true"] > li::before {
        content: "☑";
      }
      .ql-editor ul[data-checked="false"] > li::before {
        content: "☐";
      }
      .ql-editor li::before {
        display: inline-block;
        white-space: nowrap;
        width: 1.2em;
      }
      .ql-editor li:not(.ql-direction-rtl)::before {
        margin-left: -1.5em;
        margin-right: 0.3em;
        text-align: right;
      }
      .ql-editor li.ql-direction-rtl::before {
        margin-left: 0.3em;
        margin-right: -1.5em;
      }
      .ql-editor ol li:not(.ql-direction-rtl),
      .ql-editor ul li:not(.ql-direction-rtl) {
        padding-left: 1.5em;
      }
      .ql-editor ol li.ql-direction-rtl,
      .ql-editor ul li.ql-direction-rtl {
        padding-right: 1.5em;
      }
      .ql-editor ol li {
        counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8
          list-9;
        counter-increment: list-0;
      }
      .ql-editor ol li:before {
        content: counter(list-0, decimal) ". ";
      }
      .ql-editor ol li.ql-indent-1 {
        counter-increment: list-1;
      }
      .ql-editor ol li.ql-indent-1:before {
        content: counter(list-1, lower-alpha) ". ";
      }
      .ql-editor ol li.ql-indent-1 {
        counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
      }
      .ql-editor ol li.ql-indent-2 {
        counter-increment: list-2;
      }
      .ql-editor ol li.ql-indent-2:before {
        content: counter(list-2, lower-roman) ". ";
      }
      .ql-editor ol li.ql-indent-2 {
        counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
      }
      .ql-editor ol li.ql-indent-3 {
        counter-increment: list-3;
      }
      .ql-editor ol li.ql-indent-3:before {
        content: counter(list-3, decimal) ". ";
      }
      .ql-editor ol li.ql-indent-3 {
        counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
      }
      .ql-editor ol li.ql-indent-4 {
        counter-increment: list-4;
      }
      .ql-editor ol li.ql-indent-4:before {
        content: counter(list-4, lower-alpha) ". ";
      }
      .ql-editor ol li.ql-indent-4 {
        counter-reset: list-5 list-6 list-7 list-8 list-9;
      }
      .ql-editor ol li.ql-indent-5 {
        counter-increment: list-5;
      }
      .ql-editor ol li.ql-indent-5:before {
        content: counter(list-5, lower-roman) ". ";
      }
      .ql-editor ol li.ql-indent-5 {
        counter-reset: list-6 list-7 list-8 list-9;
      }
      .ql-editor ol li.ql-indent-6 {
        counter-increment: list-6;
      }
      .ql-editor ol li.ql-indent-6:before {
        content: counter(list-6, decimal) ". ";
      }
      .ql-editor ol li.ql-indent-6 {
        counter-reset: list-7 list-8 list-9;
      }
      .ql-editor ol li.ql-indent-7 {
        counter-increment: list-7;
      }
      .ql-editor ol li.ql-indent-7:before {
        content: counter(list-7, lower-alpha) ". ";
      }
      .ql-editor ol li.ql-indent-7 {
        counter-reset: list-8 list-9;
      }
      .ql-editor ol li.ql-indent-8 {
        counter-increment: list-8;
      }
      .ql-editor ol li.ql-indent-8:before {
        content: counter(list-8, lower-roman) ". ";
      }
      .ql-editor ol li.ql-indent-8 {
        counter-reset: list-9;
      }
      .ql-editor ol li.ql-indent-9 {
        counter-increment: list-9;
      }
      .ql-editor ol li.ql-indent-9:before {
        content: counter(list-9, decimal) ". ";
      }
      .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
        padding-left: 3em;
      }
      .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
        padding-left: 4.5em;
      }
      .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
        padding-right: 3em;
      }
      .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
        padding-right: 4.5em;
      }
      .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
        padding-left: 6em;
      }
      .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
        padding-left: 7.5em;
      }
      .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
        padding-right: 6em;
      }
      .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
        padding-right: 7.5em;
      }
      .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
        padding-left: 9em;
      }
      .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
        padding-left: 10.5em;
      }
      .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
        padding-right: 9em;
      }
      .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
        padding-right: 10.5em;
      }
      .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
        padding-left: 12em;
      }
      .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
        padding-left: 13.5em;
      }
      .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
        padding-right: 12em;
      }
      .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
        padding-right: 13.5em;
      }
      .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
        padding-left: 15em;
      }
      .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
        padding-left: 16.5em;
      }
      .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
        padding-right: 15em;
      }
      .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
        padding-right: 16.5em;
      }
      .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
        padding-left: 18em;
      }
      .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
        padding-left: 19.5em;
      }
      .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
        padding-right: 18em;
      }
      .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
        padding-right: 19.5em;
      }
      .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
        padding-left: 21em;
      }
      .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
        padding-left: 22.5em;
      }
      .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
        padding-right: 21em;
      }
      .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
        padding-right: 22.5em;
      }
      .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
        padding-left: 24em;
      }
      .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
        padding-left: 25.5em;
      }
      .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
        padding-right: 24em;
      }
      .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
        padding-right: 25.5em;
      }
      .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
        padding-left: 27em;
      }
      .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
        padding-left: 28.5em;
      }
      .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
        padding-right: 27em;
      }
      .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
        padding-right: 28.5em;
      }
      .ql-editor .ql-video {
        display: block;
        max-width: 100%;
      }
      .ql-editor .ql-video.ql-align-center {
        margin: 0 auto;
      }
      .ql-editor .ql-video.ql-align-right {
        margin: 0 0 0 auto;
      }
      .ql-editor .ql-bg-black {
        background-color: #000;
      }
      .ql-editor .ql-bg-red {
        background-color: #e60000;
      }
      .ql-editor .ql-bg-orange {
        background-color: #f90;
      }
      .ql-editor .ql-bg-yellow {
        background-color: #ff0;
      }
      .ql-editor .ql-bg-green {
        background-color: #008a00;
      }
      .ql-editor .ql-bg-blue {
        background-color: #06c;
      }
      .ql-editor .ql-bg-purple {
        background-color: #93f;
      }
      .ql-editor .ql-color-white {
        color: #fff;
      }
      .ql-editor .ql-color-red {
        color: #e60000;
      }
      .ql-editor .ql-color-orange {
        color: #f90;
      }
      .ql-editor .ql-color-yellow {
        color: #ff0;
      }
      .ql-editor .ql-color-green {
        color: #008a00;
      }
      .ql-editor .ql-color-blue {
        color: #06c;
      }
      .ql-editor .ql-color-purple {
        color: #93f;
      }
      .ql-editor .ql-font-serif {
        font-family: Georgia, Times New Roman, serif;
      }
      .ql-editor .ql-font-monospace {
        font-family: Monaco, Courier New, monospace;
      }
      .ql-editor .ql-size-small {
        font-size: 0.75em;
      }
      .ql-editor .ql-size-large {
        font-size: 1.5em;
      }
      .ql-editor .ql-size-huge {
        font-size: 2.5em;
      }
      .ql-editor .ql-direction-rtl {
        direction: rtl;
        text-align: inherit;
      }
      .ql-editor .ql-align-center {
        text-align: center;
      }
      .ql-editor .ql-align-justify {
        text-align: justify;
      }
      .ql-editor .ql-align-right {
        text-align: right;
      }
      .ql-editor.ql-blank::before {
        color: rgba(0, 0, 0, 0.6);
        content: attr(data-placeholder);
        font-style: italic;
        left: 15px;
        pointer-events: none;
        position: absolute;
        right: 15px;
      }
      .ql-snow.ql-toolbar:after,
      .ql-snow .ql-toolbar:after {
        clear: both;
        content: "";
        display: table;
      }
      .ql-snow.ql-toolbar button,
      .ql-snow .ql-toolbar button {
        background: none;
        border: none;
        cursor: pointer;
        display: inline-block;
        float: left;
        height: 24px;
        padding: 3px 5px;
        width: 28px;
      }
      .ql-snow.ql-toolbar button svg,
      .ql-snow .ql-toolbar button svg {
        float: left;
        height: 100%;
      }
      .ql-snow.ql-toolbar button:active:hover,
      .ql-snow .ql-toolbar button:active:hover {
        outline: none;
      }
      .ql-snow.ql-toolbar input.ql-image[type="file"],
      .ql-snow .ql-toolbar input.ql-image[type="file"] {
        display: none;
      }
      .ql-snow.ql-toolbar button:hover,
      .ql-snow .ql-toolbar button:hover,
      .ql-snow.ql-toolbar button:focus,
      .ql-snow .ql-toolbar button:focus,
      .ql-snow.ql-toolbar button.ql-active,
      .ql-snow .ql-toolbar button.ql-active,
      .ql-snow.ql-toolbar .ql-picker-label:hover,
      .ql-snow .ql-toolbar .ql-picker-label:hover,
      .ql-snow.ql-toolbar .ql-picker-label.ql-active,
      .ql-snow .ql-toolbar .ql-picker-label.ql-active,
      .ql-snow.ql-toolbar .ql-picker-item:hover,
      .ql-snow .ql-toolbar .ql-picker-item:hover,
      .ql-snow.ql-toolbar .ql-picker-item.ql-selected,
      .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
        color: #06c;
      }
      .ql-snow.ql-toolbar button:hover .ql-fill,
      .ql-snow .ql-toolbar button:hover .ql-fill,
      .ql-snow.ql-toolbar button:focus .ql-fill,
      .ql-snow .ql-toolbar button:focus .ql-fill,
      .ql-snow.ql-toolbar button.ql-active .ql-fill,
      .ql-snow .ql-toolbar button.ql-active .ql-fill,
      .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
      .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
      .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
      .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
      .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
      .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
      .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
      .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
      .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
      .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
      .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
      .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
      .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
      .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
      .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
      .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
      .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
      .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
      .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
      .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
      .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
      .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
        fill: #06c;
      }
      .ql-snow.ql-toolbar button:hover .ql-stroke,
      .ql-snow .ql-toolbar button:hover .ql-stroke,
      .ql-snow.ql-toolbar button:focus .ql-stroke,
      .ql-snow .ql-toolbar button:focus .ql-stroke,
      .ql-snow.ql-toolbar button.ql-active .ql-stroke,
      .ql-snow .ql-toolbar button.ql-active .ql-stroke,
      .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
      .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
      .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
      .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
      .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
      .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
      .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
      .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
      .ql-snow.ql-toolbar button:hover .ql-stroke-miter,
      .ql-snow .ql-toolbar button:hover .ql-stroke-miter,
      .ql-snow.ql-toolbar button:focus .ql-stroke-miter,
      .ql-snow .ql-toolbar button:focus .ql-stroke-miter,
      .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
      .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
      .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
      .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
      .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
      .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
      .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
      .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
      .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
      .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
        stroke: #06c;
      }
      @media (pointer: coarse) {
        .ql-snow.ql-toolbar button:hover:not(.ql-active),
        .ql-snow .ql-toolbar button:hover:not(.ql-active) {
          color: #444;
        }
        .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
        .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
        .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
        .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
          fill: #444;
        }
        .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
        .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
        .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
        .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
          stroke: #444;
        }
      }
      .ql-snow {
        box-sizing: border-box;
      }
      .ql-snow * {
        box-sizing: border-box;
      }
      .ql-snow .ql-hidden {
        display: none;
      }
      .ql-snow .ql-out-bottom,
      .ql-snow .ql-out-top {
        visibility: hidden;
      }
      .ql-snow .ql-tooltip {
        position: absolute;
        transform: translateY(10px);
      }
      .ql-snow .ql-tooltip a {
        cursor: pointer;
        text-decoration: none;
      }
      .ql-snow .ql-tooltip.ql-flip {
        transform: translateY(-10px);
      }
      .ql-snow .ql-formats {
        display: inline-block;
        vertical-align: middle;
      }
      .ql-snow .ql-formats:after {
        clear: both;
        content: "";
        display: table;
      }
      .ql-snow .ql-stroke {
        fill: none;
        stroke: #444;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2;
      }
      .ql-snow .ql-stroke-miter {
        fill: none;
        stroke: #444;
        stroke-miterlimit: 10;
        stroke-width: 2;
      }
      .ql-snow .ql-fill,
      .ql-snow .ql-stroke.ql-fill {
        fill: #444;
      }
      .ql-snow .ql-empty {
        fill: none;
      }
      .ql-snow .ql-even {
        fill-rule: evenodd;
      }
      .ql-snow .ql-thin,
      .ql-snow .ql-stroke.ql-thin {
        stroke-width: 1;
      }
      .ql-snow .ql-transparent {
        opacity: 0.4;
      }
      .ql-snow .ql-direction svg:last-child {
        display: none;
      }
      .ql-snow .ql-direction.ql-active svg:last-child {
        display: inline;
      }
      .ql-snow .ql-direction.ql-active svg:first-child {
        display: none;
      }
      .ql-snow .ql-editor h1 {
        font-size: 2em;
      }
      .ql-snow .ql-editor h2 {
        font-size: 1.5em;
      }
      .ql-snow .ql-editor h3 {
        font-size: 1.17em;
      }
      .ql-snow .ql-editor h4 {
        font-size: 1em;
      }
      .ql-snow .ql-editor h5 {
        font-size: 0.83em;
      }
      .ql-snow .ql-editor h6 {
        font-size: 0.67em;
      }
      .ql-snow .ql-editor a {
        text-decoration: underline;
      }
      .ql-snow .ql-editor blockquote {
        border-left: 4px solid #ccc;
        margin-bottom: 5px;
        margin-top: 5px;
        padding-left: 16px;
      }
      .ql-snow .ql-editor code,
      .ql-snow .ql-editor pre {
        background-color: #f0f0f0;
        border-radius: 3px;
      }
      .ql-snow .ql-editor pre {
        white-space: pre-wrap;
        margin-bottom: 5px;
        margin-top: 5px;
        padding: 5px 10px;
      }
      .ql-snow .ql-editor code {
        font-size: 85%;
        padding: 2px 4px;
      }
      .ql-snow .ql-editor pre.ql-syntax {
        background-color: #23241f;
        color: #f8f8f2;
        overflow: visible;
      }
      .ql-snow .ql-editor img {
        max-width: 100%;
      }
      .ql-snow .ql-picker {
        color: #444;
        display: inline-block;
        float: left;
        font-size: 14px;
        font-weight: 500;
        height: 24px;
        position: relative;
        vertical-align: middle;
      }
      .ql-snow .ql-picker-label {
        cursor: pointer;
        display: inline-block;
        height: 100%;
        padding-left: 8px;
        padding-right: 2px;
        position: relative;
        width: 100%;
      }
      .ql-snow .ql-picker-label::before {
        display: inline-block;
        line-height: 22px;
      }
      .ql-snow .ql-picker-options {
        background-color: #fff;
        display: none;
        min-width: 100%;
        padding: 4px 8px;
        position: absolute;
        white-space: nowrap;
      }
      .ql-snow .ql-picker-options .ql-picker-item {
        cursor: pointer;
        display: block;
        padding-bottom: 5px;
        padding-top: 5px;
      }
      .ql-snow .ql-picker.ql-expanded .ql-picker-label {
        color: #ccc;
        z-index: 2;
      }
      .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
        fill: #ccc;
      }
      .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
        stroke: #ccc;
      }
      .ql-snow .ql-picker.ql-expanded .ql-picker-options {
        display: block;
        margin-top: -1px;
        top: 100%;
        z-index: 1;
      }
      .ql-snow .ql-color-picker,
      .ql-snow .ql-icon-picker {
        width: 28px;
      }
      .ql-snow .ql-color-picker .ql-picker-label,
      .ql-snow .ql-icon-picker .ql-picker-label {
        padding: 2px 4px;
      }
      .ql-snow .ql-color-picker .ql-picker-label svg,
      .ql-snow .ql-icon-picker .ql-picker-label svg {
        right: 4px;
      }
      .ql-snow .ql-icon-picker .ql-picker-options {
        padding: 4px 0px;
      }
      .ql-snow .ql-icon-picker .ql-picker-item {
        height: 24px;
        width: 24px;
        padding: 2px 4px;
      }
      .ql-snow .ql-color-picker .ql-picker-options {
        padding: 3px 5px;
        width: 152px;
      }
      .ql-snow .ql-color-picker .ql-picker-item {
        border: 1px solid rgba(0, 0, 0, 0);
        float: left;
        height: 16px;
        margin: 2px;
        padding: 0px;
        width: 16px;
      }
      .ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
        position: absolute;
        margin-top: -9px;
        right: 0;
        top: 50%;
        width: 18px;
      }
      .ql-snow
        .ql-picker.ql-header
        .ql-picker-label[data-label]:not([data-label=""])::before,
      .ql-snow
        .ql-picker.ql-font
        .ql-picker-label[data-label]:not([data-label=""])::before,
      .ql-snow
        .ql-picker.ql-size
        .ql-picker-label[data-label]:not([data-label=""])::before,
      .ql-snow
        .ql-picker.ql-header
        .ql-picker-item[data-label]:not([data-label=""])::before,
      .ql-snow
        .ql-picker.ql-font
        .ql-picker-item[data-label]:not([data-label=""])::before,
      .ql-snow
        .ql-picker.ql-size
        .ql-picker-item[data-label]:not([data-label=""])::before {
        content: attr(data-label);
      }
      .ql-snow .ql-picker.ql-header {
        width: 98px;
      }
      .ql-snow .ql-picker.ql-header .ql-picker-label::before,
      .ql-snow .ql-picker.ql-header .ql-picker-item::before {
        content: "Normal";
      }
      .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
        content: "Heading 1";
      }
      .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
        content: "Heading 2";
      }
      .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
        content: "Heading 3";
      }
      .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
        content: "Heading 4";
      }
      .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
        content: "Heading 5";
      }
      .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
        content: "Heading 6";
      }
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
        font-size: 2em;
      }
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
        font-size: 1.5em;
      }
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
        font-size: 1.17em;
      }
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
        font-size: 1em;
      }
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
        font-size: 0.83em;
      }
      .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
        font-size: 0.67em;
      }
      .ql-snow .ql-picker.ql-font {
        width: 108px;
      }
      .ql-snow .ql-picker.ql-font .ql-picker-label::before,
      .ql-snow .ql-picker.ql-font .ql-picker-item::before {
        content: "Sans Serif";
      }
      .ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]::before,
      .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
        content: "Serif";
      }
      .ql-snow
        .ql-picker.ql-font
        .ql-picker-label[data-value="monospace"]::before,
      .ql-snow
        .ql-picker.ql-font
        .ql-picker-item[data-value="monospace"]::before {
        content: "Monospace";
      }
      .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
        font-family: Georgia, Times New Roman, serif;
      }
      .ql-snow
        .ql-picker.ql-font
        .ql-picker-item[data-value="monospace"]::before {
        font-family: Monaco, Courier New, monospace;
      }
      .ql-snow .ql-picker.ql-size {
        width: 98px;
      }
      .ql-snow .ql-picker.ql-size .ql-picker-label::before,
      .ql-snow .ql-picker.ql-size .ql-picker-item::before {
        content: "Normal";
      }
      .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]::before,
      .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
        content: "Small";
      }
      .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]::before,
      .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
        content: "Large";
      }
      .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]::before,
      .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
        content: "Huge";
      }
      .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
        font-size: 10px;
      }
      .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
        font-size: 18px;
      }
      .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
        font-size: 32px;
      }
      .ql-snow .ql-color-picker.ql-background .ql-picker-item {
        background-color: #fff;
      }
      .ql-snow .ql-color-picker.ql-color .ql-picker-item {
        background-color: #000;
      }
      .ql-toolbar.ql-snow {
        border: 1px solid #ccc;
        box-sizing: border-box;
        font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
        padding: 8px;
      }
      .ql-toolbar.ql-snow .ql-formats {
        margin-right: 15px;
      }
      .ql-toolbar.ql-snow .ql-picker-label {
        border: 1px solid rgba(0, 0, 0, 0);
      }
      .ql-toolbar.ql-snow .ql-picker-options {
        border: 1px solid rgba(0, 0, 0, 0);
        box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
      }
      .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
        border-color: #ccc;
      }
      .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
        border-color: #ccc;
      }
      .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
      .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
        border-color: #000;
      }
      .ql-toolbar.ql-snow + .ql-container.ql-snow {
        border-top: 0px;
      }
      .ql-snow .ql-tooltip {
        background-color: #fff;
        border: 1px solid #ccc;
        box-shadow: 0px 0px 5px #ddd;
        color: #444;
        padding: 5px 12px;
        white-space: nowrap;
      }
      .ql-snow .ql-tooltip::before {
        content: "Visit URL:";
        line-height: 26px;
        margin-right: 8px;
      }
      .ql-snow .ql-tooltip input[type="text"] {
        display: none;
        border: 1px solid #ccc;
        font-size: 13px;
        height: 26px;
        margin: 0px;
        padding: 3px 5px;
        width: 170px;
      }
      .ql-snow .ql-tooltip a.ql-preview {
        display: inline-block;
        max-width: 200px;
        overflow-x: hidden;
        text-overflow: ellipsis;
        vertical-align: top;
      }
      .ql-snow .ql-tooltip a.ql-action::after {
        border-right: 1px solid #ccc;
        content: "Edit";
        margin-left: 16px;
        padding-right: 8px;
      }
      .ql-snow .ql-tooltip a.ql-remove::before {
        content: "Remove";
        margin-left: 8px;
      }
      .ql-snow .ql-tooltip a {
        line-height: 26px;
      }
      .ql-snow .ql-tooltip.ql-editing a.ql-preview,
      .ql-snow .ql-tooltip.ql-editing a.ql-remove {
        display: none;
      }
      .ql-snow .ql-tooltip.ql-editing input[type="text"] {
        display: inline-block;
      }
      .ql-snow .ql-tooltip.ql-editing a.ql-action::after {
        border-right: 0px;
        content: "Save";
        padding-right: 0px;
      }
      .ql-snow .ql-tooltip[data-mode="link"]::before {
        content: "Enter link:";
      }
      .ql-snow .ql-tooltip[data-mode="formula"]::before {
        content: "Enter formula:";
      }
      .ql-snow .ql-tooltip[data-mode="video"]::before {
        content: "Enter video:";
      }
      .ql-snow a {
        color: #06c;
      }
      .ql-container.ql-snow {
        border: 1px solid #ccc;
      }
    
      .ant-input-affix-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
        min-width: 0;
        padding: 4px 11px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        line-height: 1.5715;
        background-color: #fff;
        background-image: none;
        border: 1px solid #d9d9d9;
        border-radius: 2px;
        transition: all 0.3s;
        display: inline-flex;
      }
      .ant-input-affix-wrapper::-moz-placeholder {
        color: #bfbfbf;
        -moz-user-select: none;
        user-select: none;
      }
      .ant-input-affix-wrapper:-ms-input-placeholder {
        color: #bfbfbf;
        -ms-user-select: none;
        user-select: none;
      }
      .ant-input-affix-wrapper::placeholder {
        color: #bfbfbf;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }
      .ant-input-affix-wrapper:-moz-placeholder-shown {
        text-overflow: ellipsis;
      }
      .ant-input-affix-wrapper:-ms-input-placeholder {
        text-overflow: ellipsis;
      }
      .ant-input-affix-wrapper:placeholder-shown {
        text-overflow: ellipsis;
      }
      .ant-input-affix-wrapper:hover {
        border-color: #40a9ff;
        border-right-width: 1px;
      }
      .ant-input-rtl .ant-input-affix-wrapper:hover {
        border-right-width: 0;
        border-left-width: 1px !important;
      }
      .ant-input-affix-wrapper:focus,
      .ant-input-affix-wrapper-focused {
        border-color: #40a9ff;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
        border-right-width: 1px;
        outline: 0;
      }
      .ant-input-rtl .ant-input-affix-wrapper:focus,
      .ant-input-rtl .ant-input-affix-wrapper-focused {
        border-right-width: 0;
        border-left-width: 1px !important;
      }
      .ant-input-affix-wrapper-disabled {
        color: rgba(0, 0, 0, 0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        box-shadow: none;
        cursor: not-allowed;
        opacity: 1;
      }
      .ant-input-affix-wrapper-disabled:hover {
        border-color: #d9d9d9;
        border-right-width: 1px;
      }
      .ant-input-affix-wrapper[disabled] {
        color: rgba(0, 0, 0, 0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        box-shadow: none;
        cursor: not-allowed;
        opacity: 1;
      }
      .ant-input-affix-wrapper[disabled]:hover {
        border-color: #d9d9d9;
        border-right-width: 1px;
      }
      .ant-input-affix-wrapper-borderless,
      .ant-input-affix-wrapper-borderless:hover,
      .ant-input-affix-wrapper-borderless:focus,
      .ant-input-affix-wrapper-borderless-focused,
      .ant-input-affix-wrapper-borderless-disabled,
      .ant-input-affix-wrapper-borderless[disabled] {
        background-color: rgba(0, 0, 0, 0);
        border: none;
        box-shadow: none;
      }
      textarea.ant-input-affix-wrapper {
        max-width: 100%;
        height: auto;
        min-height: 32px;
        line-height: 1.5715;
        vertical-align: bottom;
        transition: all 0.3s, height 0s;
      }
      .ant-input-affix-wrapper-lg {
        padding: 6.5px 11px;
        font-size: 16px;
      }
      .ant-input-affix-wrapper-sm {
        padding: 0px 7px;
      }
      .ant-input-affix-wrapper-rtl {
        direction: rtl;
      }
      .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
        border-color: #40a9ff;
        border-right-width: 1px;
        z-index: 1;
      }
      .ant-input-rtl
        .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
        border-right-width: 0;
        border-left-width: 1px !important;
      }
      .ant-input-search-with-button
        .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
        z-index: 0;
      }
      .ant-input-affix-wrapper-focused,
      .ant-input-affix-wrapper:focus {
        z-index: 1;
      }
      .ant-input-affix-wrapper-disabled .ant-input[disabled] {
        background: rgba(255, 255, 255, 0);
      }
      .ant-input-affix-wrapper > .ant-input {
        font-size: inherit;
        border: none;
        outline: none;
      }
      .ant-input-affix-wrapper > .ant-input:focus {
        box-shadow: none !important;
      }
      .ant-input-affix-wrapper > .ant-input:not(textarea) {
        padding: 0;
      }
      .ant-input-affix-wrapper::before {
        width: 0;
        visibility: hidden;
        content: " ";
      }
      .ant-input-prefix,
      .ant-input-suffix {
        display: flex;
        flex: none;
        align-items: center;
      }
      .ant-input-prefix > *:not(:last-child),
      .ant-input-suffix > *:not(:last-child) {
        margin-right: 8px;
      }
      .ant-input-show-count-suffix {
        color: rgba(0, 0, 0, 0.45);
      }
      .ant-input-show-count-has-suffix {
        margin-right: 2px;
      }
      .ant-input-prefix {
        margin-right: 4px;
      }
      .ant-input-suffix {
        margin-left: 4px;
      }
      .anticon.ant-input-clear-icon,
      .ant-input-clear-icon {
        margin: 0;
        color: rgba(0, 0, 0, 0.25);
        font-size: 12px;
        vertical-align: -1px;
        cursor: pointer;
        transition: color 0.3s;
      }
      .anticon.ant-input-clear-icon:hover,
      .ant-input-clear-icon:hover {
        color: rgba(0, 0, 0, 0.45);
      }
      .anticon.ant-input-clear-icon:active,
      .ant-input-clear-icon:active {
        color: rgba(0, 0, 0, 0.85);
      }
      .anticon.ant-input-clear-icon-hidden,
      .ant-input-clear-icon-hidden {
        visibility: hidden;
      }
      .anticon.ant-input-clear-icon-has-suffix,
      .ant-input-clear-icon-has-suffix {
        margin: 0 4px;
      }
      .ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn {
        padding: 0;
      }
      .ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn
        .ant-input-clear-icon {
        position: absolute;
        top: 8px;
        right: 8px;
        z-index: 1;
      }
      .ant-input-status-error:not(.ant-input-disabled):not(
          .ant-input-borderless
        ).ant-input,
      .ant-input-status-error:not(.ant-input-disabled):not(
          .ant-input-borderless
        ).ant-input:hover {
        background: #fff;
        border-color: #ff4d4f;
      }
      .ant-input-status-error:not(.ant-input-disabled):not(
          .ant-input-borderless
        ).ant-input:focus,
      .ant-input-status-error:not(.ant-input-disabled):not(
          .ant-input-borderless
        ).ant-input-focused {
        border-color: #ff7875;
        box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
        border-right-width: 1px;
        outline: 0;
      }
      .ant-input-status-error .ant-input-prefix {
        color: #ff4d4f;
      }
      .ant-input-status-warning:not(.ant-input-disabled):not(
          .ant-input-borderless
        ).ant-input,
      .ant-input-status-warning:not(.ant-input-disabled):not(
          .ant-input-borderless
        ).ant-input:hover {
        background: #fff;
        border-color: #faad14;
      }
      .ant-input-status-warning:not(.ant-input-disabled):not(
          .ant-input-borderless
        ).ant-input:focus,
      .ant-input-status-warning:not(.ant-input-disabled):not(
          .ant-input-borderless
        ).ant-input-focused {
        border-color: #ffc53d;
        box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
        border-right-width: 1px;
        outline: 0;
      }
      .ant-input-status-warning .ant-input-prefix {
        color: #faad14;
      }
      .ant-input-affix-wrapper-status-error:not(
          .ant-input-affix-wrapper-disabled
        ):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
      .ant-input-affix-wrapper-status-error:not(
          .ant-input-affix-wrapper-disabled
        ):not(
          .ant-input-affix-wrapper-borderless
        ).ant-input-affix-wrapper:hover {
        background: #fff;
        border-color: #ff4d4f;
      }
      .ant-input-affix-wrapper-status-error:not(
          .ant-input-affix-wrapper-disabled
        ):not(
          .ant-input-affix-wrapper-borderless
        ).ant-input-affix-wrapper:focus,
      .ant-input-affix-wrapper-status-error:not(
          .ant-input-affix-wrapper-disabled
        ):not(
          .ant-input-affix-wrapper-borderless
        ).ant-input-affix-wrapper-focused {
        border-color: #ff7875;
        box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
        border-right-width: 1px;
        outline: 0;
      }
      .ant-input-affix-wrapper-status-error .ant-input-prefix {
        color: #ff4d4f;
      }
      .ant-input-affix-wrapper-status-warning:not(
          .ant-input-affix-wrapper-disabled
        ):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
      .ant-input-affix-wrapper-status-warning:not(
          .ant-input-affix-wrapper-disabled
        ):not(
          .ant-input-affix-wrapper-borderless
        ).ant-input-affix-wrapper:hover {
        background: #fff;
        border-color: #faad14;
      }
      .ant-input-affix-wrapper-status-warning:not(
          .ant-input-affix-wrapper-disabled
        ):not(
          .ant-input-affix-wrapper-borderless
        ).ant-input-affix-wrapper:focus,
      .ant-input-affix-wrapper-status-warning:not(
          .ant-input-affix-wrapper-disabled
        ):not(
          .ant-input-affix-wrapper-borderless
        ).ant-input-affix-wrapper-focused {
        border-color: #ffc53d;
        box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
        border-right-width: 1px;
        outline: 0;
      }
      .ant-input-affix-wrapper-status-warning .ant-input-prefix {
        color: #faad14;
      }
      .ant-input-textarea-status-error.ant-input-textarea-has-feedback
        .ant-input,
      .ant-input-textarea-status-warning.ant-input-textarea-has-feedback
        .ant-input,
      .ant-input-textarea-status-success.ant-input-textarea-has-feedback
        .ant-input,
      .ant-input-textarea-status-validating.ant-input-textarea-has-feedback
        .ant-input {
        padding-right: 24px;
      }
      .ant-input-group-wrapper-status-error .ant-input-group-addon {
        color: #ff4d4f;
        border-color: #ff4d4f;
      }
      .ant-input-group-wrapper-status-warning .ant-input-group-addon {
        color: #faad14;
        border-color: #faad14;
      }
      .ant-input {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-variant: tabular-nums;
        list-style: none;
        font-feature-settings: "tnum";
        position: relative;
        display: inline-block;
        width: 100%;
        min-width: 0;
        padding: 4px 11px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        line-height: 1.5715;
        background-color: #fff;
        background-image: none;
        border: 1px solid #d9d9d9;
        border-radius: 2px;
        transition: all 0.3s;
      }
      .ant-input::-moz-placeholder {
        color: #bfbfbf;
        -moz-user-select: none;
        user-select: none;
      }
      .ant-input:-ms-input-placeholder {
        color: #bfbfbf;
        -ms-user-select: none;
        user-select: none;
      }
      .ant-input::placeholder {
        color: #bfbfbf;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }
      .ant-input:-moz-placeholder-shown {
        text-overflow: ellipsis;
      }
      .ant-input:-ms-input-placeholder {
        text-overflow: ellipsis;
      }
      .ant-input:placeholder-shown {
        text-overflow: ellipsis;
      }
      .ant-input:hover {
        border-color: #40a9ff;
        border-right-width: 1px;
      }
      .ant-input-rtl .ant-input:hover {
        border-right-width: 0;
        border-left-width: 1px !important;
      }
      .ant-input:focus,
      .ant-input-focused {
        border-color: #40a9ff;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
        border-right-width: 1px;
        outline: 0;
      }
      .ant-input-rtl .ant-input:focus,
      .ant-input-rtl .ant-input-focused {
        border-right-width: 0;
        border-left-width: 1px !important;
      }
      .ant-input-disabled {
        color: rgba(0, 0, 0, 0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        box-shadow: none;
        cursor: not-allowed;
        opacity: 1;
      }
      .ant-input-disabled:hover {
        border-color: #d9d9d9;
        border-right-width: 1px;
      }
      .ant-input[disabled] {
        color: rgba(0, 0, 0, 0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        box-shadow: none;
        cursor: not-allowed;
        opacity: 1;
      }
      .ant-input[disabled]:hover {
        border-color: #d9d9d9;
        border-right-width: 1px;
      }
      .ant-input-borderless,
      .ant-input-borderless:hover,
      .ant-input-borderless:focus,
      .ant-input-borderless-focused,
      .ant-input-borderless-disabled,
      .ant-input-borderless[disabled] {
        background-color: rgba(0, 0, 0, 0);
        border: none;
        box-shadow: none;
      }
      textarea.ant-input {
        max-width: 100%;
        height: auto;
        min-height: 32px;
        line-height: 1.5715;
        vertical-align: bottom;
        transition: all 0.3s, height 0s;
      }
      .ant-input-lg {
        padding: 6.5px 11px;
        font-size: 16px;
      }
      .ant-input-sm {
        padding: 0px 7px;
      }
      .ant-input-rtl {
        direction: rtl;
      }
      .ant-input-group {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: relative;
        display: table;
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
      }
      .ant-input-group[class*="col-"] {
        float: none;
        padding-right: 0;
        padding-left: 0;
      }
      .ant-input-group > [class*="col-"] {
        padding-right: 8px;
      }
      .ant-input-group > [class*="col-"]:last-child {
        padding-right: 0;
      }
      .ant-input-group-addon,
      .ant-input-group-wrap,
      .ant-input-group > .ant-input {
        display: table-cell;
      }
      .ant-input-group-addon:not(:first-child):not(:last-child),
      .ant-input-group-wrap:not(:first-child):not(:last-child),
      .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
        border-radius: 0;
      }
      .ant-input-group-addon,
      .ant-input-group-wrap {
        width: 1px;
        white-space: nowrap;
        vertical-align: middle;
      }
      .ant-input-group-wrap > * {
        display: block !important;
      }
      .ant-input-group .ant-input {
        float: left;
        width: 100%;
        margin-bottom: 0;
        text-align: inherit;
      }
      .ant-input-group .ant-input:focus {
        z-index: 1;
        border-right-width: 1px;
      }
      .ant-input-group .ant-input:hover {
        z-index: 1;
        border-right-width: 1px;
      }
      .ant-input-search-with-button .ant-input-group .ant-input:hover {
        z-index: 0;
      }
      .ant-input-group-addon {
        position: relative;
        padding: 0 11px;
        color: rgba(0, 0, 0, 0.85);
        font-weight: normal;
        font-size: 14px;
        text-align: center;
        background-color: #fafafa;
        border: 1px solid #d9d9d9;
        border-radius: 2px;
        transition: all 0.3s;
      }
      .ant-input-group-addon .ant-select {
        margin: -5px -11px;
      }
      .ant-input-group-addon
        .ant-select.ant-select-single:not(.ant-select-customize-input)
        .ant-select-selector {
        background-color: inherit;
        border: 1px solid rgba(0, 0, 0, 0);
        box-shadow: none;
      }
      .ant-input-group-addon .ant-select-open .ant-select-selector,
      .ant-input-group-addon .ant-select-focused .ant-select-selector {
        color: #1890ff;
      }
      .ant-input-group-addon .ant-cascader-picker {
        margin: -9px -12px;
        background-color: rgba(0, 0, 0, 0);
      }
      .ant-input-group-addon .ant-cascader-picker .ant-cascader-input {
        text-align: left;
        border: 0;
        box-shadow: none;
      }
      .ant-input-group > .ant-input:first-child,
      .ant-input-group-addon:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-input-group
        > .ant-input:first-child
        .ant-select
        .ant-select-selector,
      .ant-input-group-addon:first-child .ant-select .ant-select-selector {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-input-group > .ant-input-affix-wrapper:not(:first-child) .ant-input {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-input-group > .ant-input-affix-wrapper:not(:last-child) .ant-input {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-input-group-addon:first-child {
        border-right: 0;
      }
      .ant-input-group-addon:last-child {
        border-left: 0;
      }
      .ant-input-group > .ant-input:last-child,
      .ant-input-group-addon:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-input-group > .ant-input:last-child .ant-select .ant-select-selector,
      .ant-input-group-addon:last-child .ant-select .ant-select-selector {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-input-group-lg .ant-input,
      .ant-input-group-lg > .ant-input-group-addon {
        padding: 6.5px 11px;
        font-size: 16px;
      }
      .ant-input-group-sm .ant-input,
      .ant-input-group-sm > .ant-input-group-addon {
        padding: 0px 7px;
      }
      .ant-input-group-lg .ant-select-single .ant-select-selector {
        height: 40px;
      }
      .ant-input-group-sm .ant-select-single .ant-select-selector {
        height: 24px;
      }
      .ant-input-group .ant-input-affix-wrapper:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-input-search
        .ant-input-group
        .ant-input-affix-wrapper:not(:last-child) {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
      }
      .ant-input-group .ant-input-affix-wrapper:not(:first-child),
      .ant-input-search
        .ant-input-group
        .ant-input-affix-wrapper:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-input-group.ant-input-group-compact {
        display: block;
      }
      .ant-input-group.ant-input-group-compact::before {
        display: table;
        content: "";
      }
      .ant-input-group.ant-input-group-compact::after {
        display: table;
        clear: both;
        content: "";
      }
      .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(
          :last-child
        ),
      .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(
          :last-child
        ),
      .ant-input-group.ant-input-group-compact
        > .ant-input:not(:first-child):not(:last-child) {
        border-right-width: 1px;
      }
      .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(
          :last-child
        ):hover,
      .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(
          :last-child
        ):hover,
      .ant-input-group.ant-input-group-compact
        > .ant-input:not(:first-child):not(:last-child):hover {
        z-index: 1;
      }
      .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(
          :last-child
        ):focus,
      .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(
          :last-child
        ):focus,
      .ant-input-group.ant-input-group-compact
        > .ant-input:not(:first-child):not(:last-child):focus {
        z-index: 1;
      }
      .ant-input-group.ant-input-group-compact > * {
        display: inline-block;
        float: none;
        vertical-align: top;
        border-radius: 0;
      }
      .ant-input-group.ant-input-group-compact > .ant-input-affix-wrapper {
        display: inline-flex;
      }
      .ant-input-group.ant-input-group-compact > .ant-picker-range {
        display: inline-flex;
      }
      .ant-input-group.ant-input-group-compact > *:not(:last-child) {
        margin-right: -1px;
        border-right-width: 1px;
      }
      .ant-input-group.ant-input-group-compact .ant-input {
        float: none;
      }
      .ant-input-group.ant-input-group-compact
        > .ant-select
        > .ant-select-selector,
      .ant-input-group.ant-input-group-compact
        > .ant-select-auto-complete
        .ant-input,
      .ant-input-group.ant-input-group-compact
        > .ant-cascader-picker
        .ant-input,
      .ant-input-group.ant-input-group-compact
        > .ant-input-group-wrapper
        .ant-input {
        border-right-width: 1px;
        border-radius: 0;
      }
      .ant-input-group.ant-input-group-compact
        > .ant-select
        > .ant-select-selector:hover,
      .ant-input-group.ant-input-group-compact
        > .ant-select-auto-complete
        .ant-input:hover,
      .ant-input-group.ant-input-group-compact
        > .ant-cascader-picker
        .ant-input:hover,
      .ant-input-group.ant-input-group-compact
        > .ant-input-group-wrapper
        .ant-input:hover {
        z-index: 1;
      }
      .ant-input-group.ant-input-group-compact
        > .ant-select
        > .ant-select-selector:focus,
      .ant-input-group.ant-input-group-compact
        > .ant-select-auto-complete
        .ant-input:focus,
      .ant-input-group.ant-input-group-compact
        > .ant-cascader-picker
        .ant-input:focus,
      .ant-input-group.ant-input-group-compact
        > .ant-input-group-wrapper
        .ant-input:focus {
        z-index: 1;
      }
      .ant-input-group.ant-input-group-compact > .ant-select-focused {
        z-index: 1;
      }
      .ant-input-group.ant-input-group-compact
        > .ant-select
        > .ant-select-arrow {
        z-index: 1;
      }
      .ant-input-group.ant-input-group-compact > *:first-child,
      .ant-input-group.ant-input-group-compact
        > .ant-select:first-child
        > .ant-select-selector,
      .ant-input-group.ant-input-group-compact
        > .ant-select-auto-complete:first-child
        .ant-input,
      .ant-input-group.ant-input-group-compact
        > .ant-cascader-picker:first-child
        .ant-input {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
      }
      .ant-input-group.ant-input-group-compact > *:last-child,
      .ant-input-group.ant-input-group-compact
        > .ant-select:last-child
        > .ant-select-selector,
      .ant-input-group.ant-input-group-compact
        > .ant-cascader-picker:last-child
        .ant-input,
      .ant-input-group.ant-input-group-compact
        > .ant-cascader-picker-focused:last-child
        .ant-input {
        border-right-width: 1px;
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
      }
      .ant-input-group.ant-input-group-compact
        > .ant-select-auto-complete
        .ant-input {
        vertical-align: top;
      }
      .ant-input-group.ant-input-group-compact
        .ant-input-group-wrapper
        + .ant-input-group-wrapper {
        margin-left: -1px;
      }
      .ant-input-group.ant-input-group-compact
        .ant-input-group-wrapper
        + .ant-input-group-wrapper
        .ant-input-affix-wrapper {
        border-radius: 0;
      }
      .ant-input-group.ant-input-group-compact
        .ant-input-group-wrapper:not(:last-child).ant-input-search
        > .ant-input-group
        > .ant-input-group-addon
        > .ant-input-search-button {
        border-radius: 0;
      }
      .ant-input-group.ant-input-group-compact
        .ant-input-group-wrapper:not(:last-child).ant-input-search
        > .ant-input-group
        > .ant-input {
        border-radius: 2px 0 0 2px;
      }
      .ant-input-group > .ant-input-rtl:first-child,
      .ant-input-group-rtl .ant-input-group-addon:first-child {
        border-radius: 0 2px 2px 0;
      }
      .ant-input-group-rtl .ant-input-group-addon:first-child {
        border-right: 1px solid #d9d9d9;
        border-left: 0;
      }
      .ant-input-group-rtl .ant-input-group-addon:last-child {
        border-right: 0;
        border-left: 1px solid #d9d9d9;
        border-radius: 2px 0 0 2px;
      }
      .ant-input-group-rtl.ant-input-group > .ant-input:last-child,
      .ant-input-group-rtl.ant-input-group-addon:last-child {
        border-radius: 2px 0 0 2px;
      }
      .ant-input-group-rtl.ant-input-group
        .ant-input-affix-wrapper:not(:first-child) {
        border-radius: 2px 0 0 2px;
      }
      .ant-input-group-rtl.ant-input-group
        .ant-input-affix-wrapper:not(:last-child) {
        border-radius: 0 2px 2px 0;
      }
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > *:not(:last-child) {
        margin-right: 0;
        margin-left: -1px;
        border-left-width: 1px;
      }
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > *:first-child,
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > .ant-select:first-child
        > .ant-select-selector,
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > .ant-select-auto-complete:first-child
        .ant-input,
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > .ant-cascader-picker:first-child
        .ant-input {
        border-radius: 0 2px 2px 0;
      }
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > *:last-child,
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > .ant-select:last-child
        > .ant-select-selector,
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > .ant-select-auto-complete:last-child
        .ant-input,
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > .ant-cascader-picker:last-child
        .ant-input,
      .ant-input-group-rtl.ant-input-group.ant-input-group-compact
        > .ant-cascader-picker-focused:last-child
        .ant-input {
        border-left-width: 1px;
        border-radius: 2px 0 0 2px;
      }
      .ant-input-group.ant-input-group-compact
        .ant-input-group-wrapper-rtl
        + .ant-input-group-wrapper-rtl {
        margin-right: -1px;
        margin-left: 0;
      }
      .ant-input-group.ant-input-group-compact
        .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search
        > .ant-input-group
        > .ant-input {
        border-radius: 0 2px 2px 0;
      }
      .ant-input-group-wrapper {
        display: inline-block;
        width: 100%;
        text-align: start;
        vertical-align: top;
      }
      .ant-input-password-icon.anticon {
        color: rgba(0, 0, 0, 0.45);
        cursor: pointer;
        transition: all 0.3s;
      }
      .ant-input-password-icon.anticon:hover {
        color: rgba(0, 0, 0, 0.85);
      }
      .ant-input[type="color"] {
        height: 32px;
      }
      .ant-input[type="color"].ant-input-lg {
        height: 40px;
      }
      .ant-input[type="color"].ant-input-sm {
        height: 24px;
        padding-top: 3px;
        padding-bottom: 3px;
      }
      .ant-input-textarea-show-count > .ant-input {
        height: 100%;
      }
      .ant-input-textarea-show-count::after {
        float: right;
        color: rgba(0, 0, 0, 0.45);
        white-space: nowrap;
        content: attr(data-count);
        pointer-events: none;
      }
      .ant-input-textarea-show-count.ant-input-textarea-in-form-item::after {
        margin-bottom: -22px;
      }
      .ant-input-textarea-suffix {
        position: absolute;
        top: 0;
        right: 11px;
        bottom: 0;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        margin: auto;
      }
      .ant-input-compact-item:not(.ant-input-compact-last-item):not(
          .ant-input-compact-item-rtl
        ) {
        margin-right: -1px;
      }
      .ant-input-compact-item:not(
          .ant-input-compact-last-item
        ).ant-input-compact-item-rtl {
        margin-left: -1px;
      }
      .ant-input-compact-item:hover,
      .ant-input-compact-item:focus,
      .ant-input-compact-item:active {
        z-index: 2;
      }
      .ant-input-compact-item[disabled] {
        z-index: 0;
      }
      .ant-input-compact-item:not(.ant-input-compact-first-item):not(
          .ant-input-compact-last-item
        ).ant-input {
        border-radius: 0;
      }
      .ant-input-compact-item.ant-input.ant-input-compact-first-item:not(
          .ant-input-compact-last-item
        ):not(.ant-input-compact-item-rtl) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-input-compact-item.ant-input.ant-input-compact-last-item:not(
          .ant-input-compact-first-item
        ):not(.ant-input-compact-item-rtl) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-input-compact-item.ant-input.ant-input-compact-item-rtl.ant-input-compact-first-item:not(
          .ant-input-compact-last-item
        ) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-input-compact-item.ant-input.ant-input-compact-item-rtl.ant-input-compact-last-item:not(
          .ant-input-compact-first-item
        ) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-input-search .ant-input:hover,
      .ant-input-search .ant-input:focus {
        border-color: #40a9ff;
      }
      .ant-input-search
        .ant-input:hover
        + .ant-input-group-addon
        .ant-input-search-button:not(.ant-btn-primary),
      .ant-input-search
        .ant-input:focus
        + .ant-input-group-addon
        .ant-input-search-button:not(.ant-btn-primary) {
        border-left-color: #40a9ff;
      }
      .ant-input-search .ant-input-affix-wrapper {
        border-radius: 0;
      }
      .ant-input-search .ant-input-lg {
        line-height: 1.5713;
      }
      .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child {
        left: -1px;
        padding: 0;
        border: 0;
      }
      .ant-input-search
        > .ant-input-group
        > .ant-input-group-addon:last-child
        .ant-input-search-button {
        padding-top: 0;
        padding-bottom: 0;
        border-radius: 0 2px 2px 0;
      }
      .ant-input-search
        > .ant-input-group
        > .ant-input-group-addon:last-child
        .ant-input-search-button:not(.ant-btn-primary) {
        color: rgba(0, 0, 0, 0.45);
      }
      .ant-input-search
        > .ant-input-group
        > .ant-input-group-addon:last-child
        .ant-input-search-button:not(.ant-btn-primary).ant-btn-loading::before {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
      }
      .ant-input-search-button {
        height: 32px;
      }
      .ant-input-search-button:hover,
      .ant-input-search-button:focus {
        z-index: 1;
      }
      .ant-input-search-large .ant-input-search-button {
        height: 40px;
      }
      .ant-input-search-small .ant-input-search-button {
        height: 24px;
      }
      .ant-input-search.ant-input-compact-item:not(
          .ant-input-compact-item-rtl
        ):not(.ant-input-compact-last-item)
        .ant-input-group-addon
        .ant-input-search-button {
        margin-right: -1px;
        border-radius: 0;
      }
      .ant-input-search.ant-input-compact-item:not(
          .ant-input-compact-first-item
        )
        .ant-input,
      .ant-input-search.ant-input-compact-item:not(
          .ant-input-compact-first-item
        )
        .ant-input-affix-wrapper {
        border-radius: 0;
      }
      .ant-input-search.ant-input-compact-item
        > .ant-input-group-addon
        .ant-input-search-button:hover,
      .ant-input-search.ant-input-compact-item > .ant-input:hover,
      .ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:hover,
      .ant-input-search.ant-input-compact-item
        > .ant-input-group-addon
        .ant-input-search-button:focus,
      .ant-input-search.ant-input-compact-item > .ant-input:focus,
      .ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:focus,
      .ant-input-search.ant-input-compact-item
        > .ant-input-group-addon
        .ant-input-search-button:active,
      .ant-input-search.ant-input-compact-item > .ant-input:active,
      .ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:active {
        z-index: 2;
      }
      .ant-input-search.ant-input-compact-item
        > .ant-input-affix-wrapper-focused {
        z-index: 2;
      }
      .ant-input-search.ant-input-compact-item-rtl:not(
          .ant-input-compact-last-item
        )
        .ant-input-group-addon:last-child
        .ant-input-search-button {
        margin-left: -1px;
        border-radius: 0;
      }
      .ant-input-group-wrapper-rtl {
        direction: rtl;
      }
      .ant-input-group-rtl {
        direction: rtl;
      }
      .ant-input-affix-wrapper.ant-input-affix-wrapper-rtl > input.ant-input {
        border: none;
        outline: none;
      }
      .ant-input-affix-wrapper-rtl .ant-input-prefix {
        margin: 0 0 0 4px;
      }
      .ant-input-affix-wrapper-rtl .ant-input-suffix {
        margin: 0 4px 0 0;
      }
      .ant-input-textarea-rtl {
        direction: rtl;
      }
      .ant-input-textarea-rtl.ant-input-textarea-show-count::after {
        text-align: left;
      }
      .ant-input-affix-wrapper-rtl .ant-input-clear-icon-has-suffix {
        margin-right: 0;
        margin-left: 4px;
      }
      .ant-input-affix-wrapper-rtl .ant-input-clear-icon {
        right: auto;
        left: 8px;
      }
      .ant-input-search-rtl {
        direction: rtl;
      }
      .ant-input-search-rtl
        .ant-input:hover
        + .ant-input-group-addon
        .ant-input-search-button:not(.ant-btn-primary),
      .ant-input-search-rtl
        .ant-input:focus
        + .ant-input-group-addon
        .ant-input-search-button:not(.ant-btn-primary) {
        border-left-color: #d9d9d9;
      }
      .ant-input-search-rtl
        .ant-input:hover
        + .ant-input-group-addon
        .ant-input-search-button:not(.ant-btn-primary):hover,
      .ant-input-search-rtl
        .ant-input:focus
        + .ant-input-group-addon
        .ant-input-search-button:not(.ant-btn-primary):hover {
        border-left-color: #40a9ff;
      }
      .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper:hover,
      .ant-input-search-rtl
        > .ant-input-group
        > .ant-input-affix-wrapper-focused {
        border-right-color: #40a9ff;
      }
      .ant-input-search-rtl
        > .ant-input-group
        > .ant-input-group-addon:last-child {
        right: -1px;
        left: auto;
      }
      .ant-input-search-rtl
        > .ant-input-group
        > .ant-input-group-addon:last-child
        .ant-input-search-button {
        border-radius: 2px 0 0 2px;
      }
      @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .ant-input {
          height: 32px;
        }
        .ant-input-lg {
          height: 40px;
        }
        .ant-input-sm {
          height: 24px;
        }
        .ant-input-affix-wrapper > input.ant-input {
          height: auto;
        }
      }
    
      .searchResumeInput input {
        outline: none !important;
        color: #000 !important;
        border: none !important;
        box-shadow: none !important;
      }
  
      .ant-collapse {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        background-color: #fafafa;
        border: 1px solid #d9d9d9;
        border-bottom: 0;
        border-radius: 2px;
      }
      .ant-collapse > .ant-collapse-item {
        border-bottom: 1px solid #d9d9d9;
      }
      .ant-collapse > .ant-collapse-item:last-child,
      .ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header {
        border-radius: 0 0 2px 2px;
      }
      .ant-collapse > .ant-collapse-item > .ant-collapse-header {
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        padding: 12px 16px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 1.5715;
        cursor: pointer;
        transition: all 0.3s, visibility 0s;
      }
      .ant-collapse
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-arrow {
        display: inline-block;
        margin-right: 12px;
        font-size: 12px;
        vertical-align: -1px;
      }
      .ant-collapse
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-arrow
        svg {
        transition: transform 0.24s;
      }
      .ant-collapse
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-header-text {
        flex: auto;
      }
      .ant-collapse
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-extra {
        margin-left: auto;
      }
      .ant-collapse > .ant-collapse-item > .ant-collapse-header:focus {
        outline: none;
      }
      .ant-collapse > .ant-collapse-item .ant-collapse-header-collapsible-only {
        cursor: default;
      }
      .ant-collapse
        > .ant-collapse-item
        .ant-collapse-header-collapsible-only
        .ant-collapse-header-text {
        flex: none;
        cursor: pointer;
      }
      .ant-collapse > .ant-collapse-item .ant-collapse-icon-collapsible-only {
        cursor: default;
      }
      .ant-collapse
        > .ant-collapse-item
        .ant-collapse-icon-collapsible-only
        .ant-collapse-expand-icon {
        cursor: pointer;
      }
      .ant-collapse
        > .ant-collapse-item.ant-collapse-no-arrow
        > .ant-collapse-header {
        padding-left: 12px;
      }
      .ant-collapse-icon-position-end
        > .ant-collapse-item
        > .ant-collapse-header {
        position: relative;
        padding: 12px 16px;
        padding-right: 40px;
      }
      .ant-collapse-icon-position-end
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-arrow {
        position: absolute;
        top: 50%;
        right: 16px;
        left: auto;
        margin: 0;
        transform: translateY(-50%);
      }
      .ant-collapse-content {
        color: rgba(0, 0, 0, 0.85);
        background-color: #fff;
        border-top: 1px solid #d9d9d9;
      }
      .ant-collapse-content > .ant-collapse-content-box {
        padding: 16px;
      }
      .ant-collapse-content-hidden {
        display: none;
      }
      .ant-collapse-item:last-child > .ant-collapse-content {
        border-radius: 0 0 2px 2px;
      }
      .ant-collapse-borderless {
        background-color: #fafafa;
        border: 0;
      }
      .ant-collapse-borderless > .ant-collapse-item {
        border-bottom: 1px solid #d9d9d9;
      }
      .ant-collapse-borderless > .ant-collapse-item:last-child,
      .ant-collapse-borderless
        > .ant-collapse-item:last-child
        .ant-collapse-header {
        border-radius: 0;
      }
      .ant-collapse-borderless > .ant-collapse-item:last-child {
        border-bottom: 0;
      }
      .ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content {
        background-color: rgba(0, 0, 0, 0);
        border-top: 0;
      }
      .ant-collapse-borderless
        > .ant-collapse-item
        > .ant-collapse-content
        > .ant-collapse-content-box {
        padding-top: 4px;
      }
      .ant-collapse-ghost {
        background-color: rgba(0, 0, 0, 0);
        border: 0;
      }
      .ant-collapse-ghost > .ant-collapse-item {
        border-bottom: 0;
      }
      .ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content {
        background-color: rgba(0, 0, 0, 0);
        border-top: 0;
      }
      .ant-collapse-ghost
        > .ant-collapse-item
        > .ant-collapse-content
        > .ant-collapse-content-box {
        padding-top: 12px;
        padding-bottom: 12px;
      }
      .ant-collapse .ant-collapse-item-disabled > .ant-collapse-header,
      .ant-collapse
        .ant-collapse-item-disabled
        > .ant-collapse-header
        > .arrow {
        color: rgba(0, 0, 0, 0.25);
        cursor: not-allowed;
      }
      .ant-collapse-rtl {
        direction: rtl;
      }
      .ant-collapse-rtl.ant-collapse.ant-collapse-icon-position-end
        > .ant-collapse-item
        > .ant-collapse-header {
        position: relative;
        padding: 12px 16px;
        padding-left: 40px;
      }
      .ant-collapse-rtl.ant-collapse.ant-collapse-icon-position-end
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-arrow {
        position: absolute;
        top: 50%;
        right: auto;
        left: 16px;
        margin: 0;
        transform: translateY(-50%);
      }
      .ant-collapse-rtl
        .ant-collapse
        > .ant-collapse-item
        > .ant-collapse-header {
        padding: 12px 16px;
        padding-right: 40px;
      }
      .ant-collapse-rtl.ant-collapse
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-arrow {
        margin-right: 0;
        margin-left: 12px;
      }
      .ant-collapse-rtl.ant-collapse
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-arrow
        svg {
        transform: rotate(180deg);
      }
      .ant-collapse-rtl.ant-collapse
        > .ant-collapse-item
        > .ant-collapse-header
        .ant-collapse-extra {
        margin-right: auto;
        margin-left: 0;
      }
      .ant-collapse-rtl.ant-collapse
        > .ant-collapse-item.ant-collapse-no-arrow
        > .ant-collapse-header {
        padding-right: 12px;
        padding-left: 0;
      }
    
      .skillSection > .ant-collapse-header {
        border-bottom: 1px solid #e1edff;
      }
 
      .ant-badge {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: relative;
        display: inline-block;
        line-height: 1;
      }
      .ant-badge-count {
        z-index: auto;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        color: #fff;
        font-weight: normal;
        font-size: 12px;
        line-height: 20px;
        white-space: nowrap;
        text-align: center;
        background: #ff4d4f;
        border-radius: 10px;
        box-shadow: 0 0 0 1px #fff;
      }
      .ant-badge-count a,
      .ant-badge-count a:hover {
        color: #fff;
      }
      .ant-badge-count-sm {
        min-width: 14px;
        height: 14px;
        padding: 0;
        font-size: 12px;
        line-height: 14px;
        border-radius: 7px;
      }
      .ant-badge-multiple-words {
        padding: 0 8px;
      }
      .ant-badge-dot {
        z-index: auto;
        width: 6px;
        min-width: 6px;
        height: 6px;
        background: #ff4d4f;
        border-radius: 100%;
        box-shadow: 0 0 0 1px #fff;
      }
      .ant-badge-dot.ant-scroll-number {
        transition: background 1.5s;
      }
      .ant-badge-count,
      .ant-badge-dot,
      .ant-badge .ant-scroll-number-custom-component {
        position: absolute;
        top: 0;
        right: 0;
        transform: translate(50%, -50%);
        transform-origin: 100% 0%;
      }
      .ant-badge-count.anticon-spin,
      .ant-badge-dot.anticon-spin,
      .ant-badge .ant-scroll-number-custom-component.anticon-spin {
        animation: antBadgeLoadingCircle 1s infinite linear;
      }
      .ant-badge-status {
        line-height: inherit;
        vertical-align: baseline;
      }
      .ant-badge-status-dot {
        position: relative;
        top: -1px;
        display: inline-block;
        width: 6px;
        height: 6px;
        vertical-align: middle;
        border-radius: 50%;
      }
      .ant-badge-status-success {
        background-color: #52c41a;
      }
      .ant-badge-status-processing {
        position: relative;
        background-color: #1890ff;
      }
      .ant-badge-status-processing::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid #1890ff;
        border-radius: 50%;
        animation: antStatusProcessing 1.2s infinite ease-in-out;
        content: "";
      }
      .ant-badge-status-default {
        background-color: #d9d9d9;
      }
      .ant-badge-status-error {
        background-color: #ff4d4f;
      }
      .ant-badge-status-warning {
        background-color: #faad14;
      }
      .ant-badge-status-pink {
        background: #eb2f96;
      }
      .ant-badge-status-magenta {
        background: #eb2f96;
      }
      .ant-badge-status-red {
        background: #f5222d;
      }
      .ant-badge-status-volcano {
        background: #fa541c;
      }
      .ant-badge-status-orange {
        background: #fa8c16;
      }
      .ant-badge-status-yellow {
        background: #fadb14;
      }
      .ant-badge-status-gold {
        background: #faad14;
      }
      .ant-badge-status-cyan {
        background: #13c2c2;
      }
      .ant-badge-status-lime {
        background: #a0d911;
      }
      .ant-badge-status-green {
        background: #52c41a;
      }
      .ant-badge-status-blue {
        background: #1890ff;
      }
      .ant-badge-status-geekblue {
        background: #2f54eb;
      }
      .ant-badge-status-purple {
        background: #722ed1;
      }
      .ant-badge-status-text {
        margin-left: 8px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
      }
      .ant-badge-zoom-appear,
      .ant-badge-zoom-enter {
        animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
        animation-fill-mode: both;
      }
      .ant-badge-zoom-leave {
        animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
        animation-fill-mode: both;
      }
      .ant-badge-not-a-wrapper .ant-badge-zoom-appear,
      .ant-badge-not-a-wrapper .ant-badge-zoom-enter {
        animation: antNoWrapperZoomBadgeIn 0.3s
          cubic-bezier(0.12, 0.4, 0.29, 1.46);
      }
      .ant-badge-not-a-wrapper .ant-badge-zoom-leave {
        animation: antNoWrapperZoomBadgeOut 0.3s
          cubic-bezier(0.71, -0.46, 0.88, 0.6);
      }
      .ant-badge-not-a-wrapper:not(.ant-badge-status) {
        vertical-align: middle;
      }
      .ant-badge-not-a-wrapper .ant-scroll-number-custom-component,
      .ant-badge-not-a-wrapper .ant-badge-count {
        transform: none;
      }
      .ant-badge-not-a-wrapper .ant-scroll-number-custom-component,
      .ant-badge-not-a-wrapper .ant-scroll-number {
        position: relative;
        top: auto;
        display: block;
        transform-origin: 50% 50%;
      }
      @keyframes antStatusProcessing {
        0% {
          transform: scale(0.8);
          opacity: 0.5;
        }
        100% {
          transform: scale(2.4);
          opacity: 0;
        }
      }
      .ant-scroll-number {
        overflow: hidden;
        direction: ltr;
      }
      .ant-scroll-number-only {
        position: relative;
        display: inline-block;
        height: 20px;
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        -webkit-transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
      }
      .ant-scroll-number-only > p.ant-scroll-number-only-unit {
        height: 20px;
        margin: 0;
        -webkit-transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
      }
      .ant-scroll-number-symbol {
        vertical-align: top;
      }
      @keyframes antZoomBadgeIn {
        0% {
          transform: scale(0) translate(50%, -50%);
          opacity: 0;
        }
        100% {
          transform: scale(1) translate(50%, -50%);
        }
      }
      @keyframes antZoomBadgeOut {
        0% {
          transform: scale(1) translate(50%, -50%);
        }
        100% {
          transform: scale(0) translate(50%, -50%);
          opacity: 0;
        }
      }
      @keyframes antNoWrapperZoomBadgeIn {
        0% {
          transform: scale(0);
          opacity: 0;
        }
        100% {
          transform: scale(1);
        }
      }
      @keyframes antNoWrapperZoomBadgeOut {
        0% {
          transform: scale(1);
        }
        100% {
          transform: scale(0);
          opacity: 0;
        }
      }
      @keyframes antBadgeLoadingCircle {
        0% {
          transform-origin: 50%;
        }
        100% {
          transform: translate(50%, -50%) rotate(360deg);
          transform-origin: 50%;
        }
      }
      .ant-ribbon-wrapper {
        position: relative;
      }
      .ant-ribbon {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: absolute;
        top: 8px;
        height: 22px;
        padding: 0 8px;
        color: #fff;
        line-height: 22px;
        white-space: nowrap;
        background-color: #1890ff;
        border-radius: 2px;
      }
      .ant-ribbon-text {
        color: #fff;
      }
      .ant-ribbon-corner {
        position: absolute;
        top: 100%;
        width: 8px;
        height: 8px;
        color: currentcolor;
        border: 4px solid;
        transform: scaleY(0.75);
        transform-origin: top;
      }
      .ant-ribbon-corner::after {
        position: absolute;
        top: -4px;
        left: -4px;
        width: inherit;
        height: inherit;
        color: rgba(0, 0, 0, 0.25);
        border: inherit;
        content: "";
      }
      .ant-ribbon-color-pink {
        color: #eb2f96;
        background: #eb2f96;
      }
      .ant-ribbon-color-magenta {
        color: #eb2f96;
        background: #eb2f96;
      }
      .ant-ribbon-color-red {
        color: #f5222d;
        background: #f5222d;
      }
      .ant-ribbon-color-volcano {
        color: #fa541c;
        background: #fa541c;
      }
      .ant-ribbon-color-orange {
        color: #fa8c16;
        background: #fa8c16;
      }
      .ant-ribbon-color-yellow {
        color: #fadb14;
        background: #fadb14;
      }
      .ant-ribbon-color-gold {
        color: #faad14;
        background: #faad14;
      }
      .ant-ribbon-color-cyan {
        color: #13c2c2;
        background: #13c2c2;
      }
      .ant-ribbon-color-lime {
        color: #a0d911;
        background: #a0d911;
      }
      .ant-ribbon-color-green {
        color: #52c41a;
        background: #52c41a;
      }
      .ant-ribbon-color-blue {
        color: #1890ff;
        background: #1890ff;
      }
      .ant-ribbon-color-geekblue {
        color: #2f54eb;
        background: #2f54eb;
      }
      .ant-ribbon-color-purple {
        color: #722ed1;
        background: #722ed1;
      }
      .ant-ribbon.ant-ribbon-placement-end {
        right: -8px;
        border-bottom-right-radius: 0;
      }
      .ant-ribbon.ant-ribbon-placement-end .ant-ribbon-corner {
        right: 0;
        border-color: currentcolor rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
          currentcolor;
      }
      .ant-ribbon.ant-ribbon-placement-start {
        left: -8px;
        border-bottom-left-radius: 0;
      }
      .ant-ribbon.ant-ribbon-placement-start .ant-ribbon-corner {
        left: 0;
        border-color: currentcolor currentcolor rgba(0, 0, 0, 0)
          rgba(0, 0, 0, 0);
      }
      .ant-badge-rtl {
        direction: rtl;
      }
      .ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-count,
      .ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-dot,
      .ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper)
        .ant-scroll-number-custom-component {
        right: auto;
        left: 0;
        direction: ltr;
        transform: translate(-50%, -50%);
        transform-origin: 0% 0%;
      }
      .ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper)
        .ant-scroll-number-custom-component {
        right: auto;
        left: 0;
        transform: translate(-50%, -50%);
        transform-origin: 0% 0%;
      }
      .ant-badge-rtl .ant-badge-status-text {
        margin-right: 8px;
        margin-left: 0;
      }
      .ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl
        .ant-badge-zoom-appear,
      .ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl
        .ant-badge-zoom-enter {
        animation-name: antZoomBadgeInRtl;
      }
      .ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl
        .ant-badge-zoom-leave {
        animation-name: antZoomBadgeOutRtl;
      }
      .ant-ribbon-rtl {
        direction: rtl;
      }
      .ant-ribbon-rtl.ant-ribbon-placement-end {
        right: unset;
        left: -8px;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 0;
      }
      .ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner {
        right: unset;
        left: 0;
        border-color: currentcolor currentcolor rgba(0, 0, 0, 0)
          rgba(0, 0, 0, 0);
      }
      .ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner::after {
        border-color: currentcolor currentcolor rgba(0, 0, 0, 0)
          rgba(0, 0, 0, 0);
      }
      .ant-ribbon-rtl.ant-ribbon-placement-start {
        right: -8px;
        left: unset;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 2px;
      }
      .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner {
        right: 0;
        left: unset;
        border-color: currentcolor rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
          currentcolor;
      }
      .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner::after {
        border-color: currentcolor rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
          currentcolor;
      }
      @keyframes antZoomBadgeInRtl {
        0% {
          transform: scale(0) translate(-50%, -50%);
          opacity: 0;
        }
        100% {
          transform: scale(1) translate(-50%, -50%);
        }
      }
      @keyframes antZoomBadgeOutRtl {
        0% {
          transform: scale(1) translate(-50%, -50%);
        }
        100% {
          transform: scale(0) translate(-50%, -50%);
          opacity: 0;
        }
      }
   
      .ant-btn {
        line-height: 1.5715;
        position: relative;
        display: inline-block;
        font-weight: 400;
        white-space: nowrap;
        text-align: center;
        background-image: none;
        border: 1px solid rgba(0, 0, 0, 0);
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        touch-action: manipulation;
        height: 32px;
        padding: 4px 15px;
        font-size: 14px;
        border-radius: 2px;
        color: rgba(0, 0, 0, 0.85);
        border-color: #d9d9d9;
        background: #fff;
      }
      .ant-btn > .anticon {
        line-height: 1;
      }
      .ant-btn,
      .ant-btn:active,
      .ant-btn:focus {
        outline: 0;
      }
      .ant-btn:not([disabled]):hover {
        text-decoration: none;
      }
      .ant-btn:not([disabled]):active {
        outline: 0;
        box-shadow: none;
      }
      .ant-btn[disabled] {
        cursor: not-allowed;
      }
      .ant-btn[disabled] > * {
        pointer-events: none;
      }
      .ant-btn-lg {
        height: 40px;
        padding: 6.4px 15px;
        font-size: 16px;
        border-radius: 2px;
      }
      .ant-btn-sm {
        height: 24px;
        padding: 0px 7px;
        font-size: 14px;
        border-radius: 2px;
      }
      .ant-btn > a:only-child {
        color: currentcolor;
      }
      .ant-btn > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn:hover,
      .ant-btn:focus {
        color: #40a9ff;
        border-color: #40a9ff;
        background: #fff;
      }
      .ant-btn:hover > a:only-child,
      .ant-btn:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn:hover > a:only-child::after,
      .ant-btn:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn:active {
        color: #096dd9;
        border-color: #096dd9;
        background: #fff;
      }
      .ant-btn:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn[disabled],
      .ant-btn[disabled]:hover,
      .ant-btn[disabled]:focus,
      .ant-btn[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn[disabled] > a:only-child,
      .ant-btn[disabled]:hover > a:only-child,
      .ant-btn[disabled]:focus > a:only-child,
      .ant-btn[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn[disabled] > a:only-child::after,
      .ant-btn[disabled]:hover > a:only-child::after,
      .ant-btn[disabled]:focus > a:only-child::after,
      .ant-btn[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn:hover,
      .ant-btn:focus,
      .ant-btn:active {
        text-decoration: none;
        background: #fff;
      }
      .ant-btn > span {
        display: inline-block;
      }
      .ant-btn-primary {
        color: #fff;
        border-color: #1890ff;
        background: #1890ff;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
      }
      .ant-btn-primary > a:only-child {
        color: currentcolor;
      }
      .ant-btn-primary > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-primary:hover,
      .ant-btn-primary:focus {
        color: #fff;
        border-color: #40a9ff;
        background: #40a9ff;
      }
      .ant-btn-primary:hover > a:only-child,
      .ant-btn-primary:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-primary:hover > a:only-child::after,
      .ant-btn-primary:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-primary:active {
        color: #fff;
        border-color: #096dd9;
        background: #096dd9;
      }
      .ant-btn-primary:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-primary:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-primary[disabled],
      .ant-btn-primary[disabled]:hover,
      .ant-btn-primary[disabled]:focus,
      .ant-btn-primary[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-primary[disabled] > a:only-child,
      .ant-btn-primary[disabled]:hover > a:only-child,
      .ant-btn-primary[disabled]:focus > a:only-child,
      .ant-btn-primary[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-primary[disabled] > a:only-child::after,
      .ant-btn-primary[disabled]:hover > a:only-child::after,
      .ant-btn-primary[disabled]:focus > a:only-child::after,
      .ant-btn-primary[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
        border-right-color: #40a9ff;
        border-left-color: #40a9ff;
      }
      .ant-btn-group
        .ant-btn-primary:not(:first-child):not(:last-child):disabled {
        border-color: #d9d9d9;
      }
      .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
        border-right-color: #40a9ff;
      }
      .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
        border-right-color: #d9d9d9;
      }
      .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
      .ant-btn-group .ant-btn-primary + .ant-btn-primary {
        border-left-color: #40a9ff;
      }
      .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
      .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
        border-left-color: #d9d9d9;
      }
      .ant-btn-ghost {
        color: rgba(0, 0, 0, 0.85);
        border-color: #d9d9d9;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-ghost > a:only-child {
        color: currentcolor;
      }
      .ant-btn-ghost > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-ghost:hover,
      .ant-btn-ghost:focus {
        color: #40a9ff;
        border-color: #40a9ff;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-ghost:hover > a:only-child,
      .ant-btn-ghost:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-ghost:hover > a:only-child::after,
      .ant-btn-ghost:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-ghost:active {
        color: #096dd9;
        border-color: #096dd9;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-ghost:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-ghost:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-ghost[disabled],
      .ant-btn-ghost[disabled]:hover,
      .ant-btn-ghost[disabled]:focus,
      .ant-btn-ghost[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-ghost[disabled] > a:only-child,
      .ant-btn-ghost[disabled]:hover > a:only-child,
      .ant-btn-ghost[disabled]:focus > a:only-child,
      .ant-btn-ghost[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-ghost[disabled] > a:only-child::after,
      .ant-btn-ghost[disabled]:hover > a:only-child::after,
      .ant-btn-ghost[disabled]:focus > a:only-child::after,
      .ant-btn-ghost[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dashed {
        color: rgba(0, 0, 0, 0.85);
        border-color: #d9d9d9;
        background: #fff;
        border-style: dashed;
      }
      .ant-btn-dashed > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dashed > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dashed:hover,
      .ant-btn-dashed:focus {
        color: #40a9ff;
        border-color: #40a9ff;
        background: #fff;
      }
      .ant-btn-dashed:hover > a:only-child,
      .ant-btn-dashed:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dashed:hover > a:only-child::after,
      .ant-btn-dashed:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dashed:active {
        color: #096dd9;
        border-color: #096dd9;
        background: #fff;
      }
      .ant-btn-dashed:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dashed:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dashed[disabled],
      .ant-btn-dashed[disabled]:hover,
      .ant-btn-dashed[disabled]:focus,
      .ant-btn-dashed[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-dashed[disabled] > a:only-child,
      .ant-btn-dashed[disabled]:hover > a:only-child,
      .ant-btn-dashed[disabled]:focus > a:only-child,
      .ant-btn-dashed[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dashed[disabled] > a:only-child::after,
      .ant-btn-dashed[disabled]:hover > a:only-child::after,
      .ant-btn-dashed[disabled]:focus > a:only-child::after,
      .ant-btn-dashed[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-danger {
        color: #fff;
        border-color: #ff4d4f;
        background: #ff4d4f;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
      }
      .ant-btn-danger > a:only-child {
        color: currentcolor;
      }
      .ant-btn-danger > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-danger:hover,
      .ant-btn-danger:focus {
        color: #fff;
        border-color: #ff7875;
        background: #ff7875;
      }
      .ant-btn-danger:hover > a:only-child,
      .ant-btn-danger:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-danger:hover > a:only-child::after,
      .ant-btn-danger:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-danger:active {
        color: #fff;
        border-color: #d9363e;
        background: #d9363e;
      }
      .ant-btn-danger:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-danger:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-danger[disabled],
      .ant-btn-danger[disabled]:hover,
      .ant-btn-danger[disabled]:focus,
      .ant-btn-danger[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-danger[disabled] > a:only-child,
      .ant-btn-danger[disabled]:hover > a:only-child,
      .ant-btn-danger[disabled]:focus > a:only-child,
      .ant-btn-danger[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-danger[disabled] > a:only-child::after,
      .ant-btn-danger[disabled]:hover > a:only-child::after,
      .ant-btn-danger[disabled]:focus > a:only-child::after,
      .ant-btn-danger[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-link {
        color: #1890ff;
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        box-shadow: none;
      }
      .ant-btn-link > a:only-child {
        color: currentcolor;
      }
      .ant-btn-link > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-link:hover,
      .ant-btn-link:focus {
        color: #40a9ff;
        border-color: #40a9ff;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-link:hover > a:only-child,
      .ant-btn-link:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-link:hover > a:only-child::after,
      .ant-btn-link:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-link:active {
        color: #096dd9;
        border-color: #096dd9;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-link:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-link:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-link[disabled],
      .ant-btn-link[disabled]:hover,
      .ant-btn-link[disabled]:focus,
      .ant-btn-link[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-link[disabled] > a:only-child,
      .ant-btn-link[disabled]:hover > a:only-child,
      .ant-btn-link[disabled]:focus > a:only-child,
      .ant-btn-link[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-link[disabled] > a:only-child::after,
      .ant-btn-link[disabled]:hover > a:only-child::after,
      .ant-btn-link[disabled]:focus > a:only-child::after,
      .ant-btn-link[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-link:hover {
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-link:hover,
      .ant-btn-link:focus,
      .ant-btn-link:active {
        border-color: rgba(0, 0, 0, 0);
      }
      .ant-btn-link[disabled],
      .ant-btn-link[disabled]:hover,
      .ant-btn-link[disabled]:focus,
      .ant-btn-link[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-link[disabled] > a:only-child,
      .ant-btn-link[disabled]:hover > a:only-child,
      .ant-btn-link[disabled]:focus > a:only-child,
      .ant-btn-link[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-link[disabled] > a:only-child::after,
      .ant-btn-link[disabled]:hover > a:only-child::after,
      .ant-btn-link[disabled]:focus > a:only-child::after,
      .ant-btn-link[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-text {
        color: rgba(0, 0, 0, 0.85);
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        box-shadow: none;
      }
      .ant-btn-text > a:only-child {
        color: currentcolor;
      }
      .ant-btn-text > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-text:hover,
      .ant-btn-text:focus {
        color: #40a9ff;
        border-color: #40a9ff;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-text:hover > a:only-child,
      .ant-btn-text:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-text:hover > a:only-child::after,
      .ant-btn-text:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-text:active {
        color: #096dd9;
        border-color: #096dd9;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-text:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-text:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-text[disabled],
      .ant-btn-text[disabled]:hover,
      .ant-btn-text[disabled]:focus,
      .ant-btn-text[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-text[disabled] > a:only-child,
      .ant-btn-text[disabled]:hover > a:only-child,
      .ant-btn-text[disabled]:focus > a:only-child,
      .ant-btn-text[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-text[disabled] > a:only-child::after,
      .ant-btn-text[disabled]:hover > a:only-child::after,
      .ant-btn-text[disabled]:focus > a:only-child::after,
      .ant-btn-text[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-text:hover,
      .ant-btn-text:focus {
        color: rgba(0, 0, 0, 0.85);
        background: rgba(0, 0, 0, 0.018);
        border-color: rgba(0, 0, 0, 0);
      }
      .ant-btn-text:active {
        color: rgba(0, 0, 0, 0.85);
        background: rgba(0, 0, 0, 0.028);
        border-color: rgba(0, 0, 0, 0);
      }
      .ant-btn-text[disabled],
      .ant-btn-text[disabled]:hover,
      .ant-btn-text[disabled]:focus,
      .ant-btn-text[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-text[disabled] > a:only-child,
      .ant-btn-text[disabled]:hover > a:only-child,
      .ant-btn-text[disabled]:focus > a:only-child,
      .ant-btn-text[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-text[disabled] > a:only-child::after,
      .ant-btn-text[disabled]:hover > a:only-child::after,
      .ant-btn-text[disabled]:focus > a:only-child::after,
      .ant-btn-text[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous {
        color: #ff4d4f;
        border-color: #ff4d4f;
        background: #fff;
      }
      .ant-btn-dangerous > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous:hover,
      .ant-btn-dangerous:focus {
        color: #ff7875;
        border-color: #ff7875;
        background: #fff;
      }
      .ant-btn-dangerous:hover > a:only-child,
      .ant-btn-dangerous:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous:hover > a:only-child::after,
      .ant-btn-dangerous:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous:active {
        color: #d9363e;
        border-color: #d9363e;
        background: #fff;
      }
      .ant-btn-dangerous:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous[disabled],
      .ant-btn-dangerous[disabled]:hover,
      .ant-btn-dangerous[disabled]:focus,
      .ant-btn-dangerous[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-dangerous[disabled] > a:only-child,
      .ant-btn-dangerous[disabled]:hover > a:only-child,
      .ant-btn-dangerous[disabled]:focus > a:only-child,
      .ant-btn-dangerous[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous[disabled] > a:only-child::after,
      .ant-btn-dangerous[disabled]:hover > a:only-child::after,
      .ant-btn-dangerous[disabled]:focus > a:only-child::after,
      .ant-btn-dangerous[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-primary {
        color: #fff;
        border-color: #ff4d4f;
        background: #ff4d4f;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
      }
      .ant-btn-dangerous.ant-btn-primary > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-primary > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-primary:hover,
      .ant-btn-dangerous.ant-btn-primary:focus {
        color: #fff;
        border-color: #ff7875;
        background: #ff7875;
      }
      .ant-btn-dangerous.ant-btn-primary:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-primary:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-primary:active {
        color: #fff;
        border-color: #d9363e;
        background: #d9363e;
      }
      .ant-btn-dangerous.ant-btn-primary:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-primary:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-primary[disabled],
      .ant-btn-dangerous.ant-btn-primary[disabled]:hover,
      .ant-btn-dangerous.ant-btn-primary[disabled]:focus,
      .ant-btn-dangerous.ant-btn-primary[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child,
      .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child,
      .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after,
      .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child::after,
      .ant-btn-dangerous.ant-btn-primary[disabled]:active
        > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-link {
        color: #ff4d4f;
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        box-shadow: none;
      }
      .ant-btn-dangerous.ant-btn-link > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-link > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-link:hover,
      .ant-btn-dangerous.ant-btn-link:focus {
        color: #40a9ff;
        border-color: #40a9ff;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-link:active {
        color: #096dd9;
        border-color: #096dd9;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-dangerous.ant-btn-link:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-link[disabled],
      .ant-btn-dangerous.ant-btn-link[disabled]:hover,
      .ant-btn-dangerous.ant-btn-link[disabled]:focus,
      .ant-btn-dangerous.ant-btn-link[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
      .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
      .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
      .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
      .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-link:hover,
      .ant-btn-dangerous.ant-btn-link:focus {
        color: #ff7875;
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-link:active {
        color: #d9363e;
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-dangerous.ant-btn-link:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-link[disabled],
      .ant-btn-dangerous.ant-btn-link[disabled]:hover,
      .ant-btn-dangerous.ant-btn-link[disabled]:focus,
      .ant-btn-dangerous.ant-btn-link[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
      .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
      .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
      .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
      .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-text {
        color: #ff4d4f;
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        box-shadow: none;
      }
      .ant-btn-dangerous.ant-btn-text > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-text > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-text:hover,
      .ant-btn-dangerous.ant-btn-text:focus {
        color: #40a9ff;
        border-color: #40a9ff;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-text:active {
        color: #096dd9;
        border-color: #096dd9;
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn-dangerous.ant-btn-text:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-text[disabled],
      .ant-btn-dangerous.ant-btn-text[disabled]:hover,
      .ant-btn-dangerous.ant-btn-text[disabled]:focus,
      .ant-btn-dangerous.ant-btn-text[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
      .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
      .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
      .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
      .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-text:hover,
      .ant-btn-dangerous.ant-btn-text:focus {
        color: #ff7875;
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0.018);
      }
      .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-text:active {
        color: #d9363e;
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0.028);
      }
      .ant-btn-dangerous.ant-btn-text:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-dangerous.ant-btn-text[disabled],
      .ant-btn-dangerous.ant-btn-text[disabled]:hover,
      .ant-btn-dangerous.ant-btn-text[disabled]:focus,
      .ant-btn-dangerous.ant-btn-text[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
      .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
      .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
      .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
      .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
      .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
      .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-icon-only {
        width: 32px;
        height: 32px;
        padding: 2.4px 0;
        font-size: 16px;
        border-radius: 2px;
        vertical-align: -3px;
      }
      .ant-btn-icon-only > * {
        font-size: 16px;
      }
      .ant-btn-icon-only.ant-btn-lg {
        width: 40px;
        height: 40px;
        padding: 4.9px 0;
        font-size: 18px;
        border-radius: 2px;
      }
      .ant-btn-icon-only.ant-btn-lg > * {
        font-size: 18px;
      }
      .ant-btn-icon-only.ant-btn-sm {
        width: 24px;
        height: 24px;
        padding: 0px 0;
        font-size: 14px;
        border-radius: 2px;
      }
      .ant-btn-icon-only.ant-btn-sm > * {
        font-size: 14px;
      }
      .ant-btn-icon-only > .anticon {
        display: flex;
        justify-content: center;
      }
      .ant-btn-icon-only .anticon-loading {
        padding: 0 !important;
      }
      a.ant-btn-icon-only {
        vertical-align: -1px;
      }
      a.ant-btn-icon-only > .anticon {
        display: inline;
      }
      .ant-btn-round {
        height: 32px;
        padding: 4px 16px;
        font-size: 14px;
        border-radius: 32px;
      }
      .ant-btn-round.ant-btn-lg {
        height: 40px;
        padding: 6.4px 20px;
        font-size: 16px;
        border-radius: 40px;
      }
      .ant-btn-round.ant-btn-sm {
        height: 24px;
        padding: 0px 12px;
        font-size: 14px;
        border-radius: 24px;
      }
      .ant-btn-round.ant-btn-icon-only {
        width: auto;
      }
      .ant-btn-circle {
        min-width: 32px;
        padding-right: 0;
        padding-left: 0;
        text-align: center;
        border-radius: 50%;
      }
      .ant-btn-circle.ant-btn-lg {
        min-width: 40px;
        border-radius: 50%;
      }
      .ant-btn-circle.ant-btn-sm {
        min-width: 24px;
        border-radius: 50%;
      }
      .ant-btn::before {
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        left: -1px;
        z-index: 1;
        display: none;
        background: #fff;
        border-radius: inherit;
        opacity: 0.35;
        transition: opacity 0.2s;
        content: "";
        pointer-events: none;
      }
      .ant-btn .anticon {
        transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
      }
      .ant-btn .anticon.anticon-plus > svg,
      .ant-btn .anticon.anticon-minus > svg {
        shape-rendering: optimizespeed;
      }
      .ant-btn.ant-btn-loading {
        position: relative;
        cursor: default;
      }
      .ant-btn.ant-btn-loading::before {
        display: block;
      }
      .ant-btn > .ant-btn-loading-icon {
        transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
          opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
      }
      .ant-btn > .ant-btn-loading-icon .anticon {
        padding-right: 8px;
        animation: none;
      }
      .ant-btn > .ant-btn-loading-icon .anticon svg {
        animation: loadingCircle 1s infinite linear;
      }
      .ant-btn-group {
        position: relative;
        display: inline-flex;
      }
      .ant-btn-group > .ant-btn,
      .ant-btn-group > span > .ant-btn {
        position: relative;
      }
      .ant-btn-group > .ant-btn:hover,
      .ant-btn-group > span > .ant-btn:hover,
      .ant-btn-group > .ant-btn:focus,
      .ant-btn-group > span > .ant-btn:focus,
      .ant-btn-group > .ant-btn:active,
      .ant-btn-group > span > .ant-btn:active {
        z-index: 2;
      }
      .ant-btn-group > .ant-btn[disabled],
      .ant-btn-group > span > .ant-btn[disabled] {
        z-index: 0;
      }
      .ant-btn-group .ant-btn-icon-only {
        font-size: 14px;
      }
      .ant-btn-group .ant-btn + .ant-btn,
      .ant-btn + .ant-btn-group,
      .ant-btn-group span + .ant-btn,
      .ant-btn-group .ant-btn + span,
      .ant-btn-group > span + span,
      .ant-btn-group + .ant-btn,
      .ant-btn-group + .ant-btn-group {
        margin-left: -1px;
      }
      .ant-btn-group
        .ant-btn-primary
        + .ant-btn:not(.ant-btn-primary):not([disabled]) {
        border-left-color: rgba(0, 0, 0, 0);
      }
      .ant-btn-group .ant-btn {
        border-radius: 0;
      }
      .ant-btn-group > .ant-btn:first-child,
      .ant-btn-group > span:first-child > .ant-btn {
        margin-left: 0;
      }
      .ant-btn-group > .ant-btn:only-child {
        border-radius: 2px;
      }
      .ant-btn-group > span:only-child > .ant-btn {
        border-radius: 2px;
      }
      .ant-btn-group > .ant-btn:first-child:not(:last-child),
      .ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
      }
      .ant-btn-group > .ant-btn:last-child:not(:first-child),
      .ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
      }
      .ant-btn-group-sm > .ant-btn:only-child {
        border-radius: 2px;
      }
      .ant-btn-group-sm > span:only-child > .ant-btn {
        border-radius: 2px;
      }
      .ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
      .ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
      }
      .ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
      .ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
      }
      .ant-btn-group > .ant-btn-group {
        float: left;
      }
      .ant-btn-group
        > .ant-btn-group:not(:first-child):not(:last-child)
        > .ant-btn {
        border-radius: 0;
      }
      .ant-btn-group
        > .ant-btn-group:first-child:not(:last-child)
        > .ant-btn:last-child {
        padding-right: 8px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-btn-group
        > .ant-btn-group:last-child:not(:first-child)
        > .ant-btn:first-child {
        padding-left: 8px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-btn-rtl.ant-btn-group .ant-btn + .ant-btn,
      .ant-btn-rtl.ant-btn + .ant-btn-group,
      .ant-btn-rtl.ant-btn-group span + .ant-btn,
      .ant-btn-rtl.ant-btn-group .ant-btn + span,
      .ant-btn-rtl.ant-btn-group > span + span,
      .ant-btn-rtl.ant-btn-group + .ant-btn,
      .ant-btn-rtl.ant-btn-group + .ant-btn-group,
      .ant-btn-group-rtl.ant-btn-group .ant-btn + .ant-btn,
      .ant-btn-group-rtl.ant-btn + .ant-btn-group,
      .ant-btn-group-rtl.ant-btn-group span + .ant-btn,
      .ant-btn-group-rtl.ant-btn-group .ant-btn + span,
      .ant-btn-group-rtl.ant-btn-group > span + span,
      .ant-btn-group-rtl.ant-btn-group + .ant-btn,
      .ant-btn-group-rtl.ant-btn-group + .ant-btn-group {
        margin-right: -1px;
        margin-left: auto;
      }
      .ant-btn-group.ant-btn-group-rtl {
        direction: rtl;
      }
      .ant-btn-group-rtl.ant-btn-group > .ant-btn:first-child:not(:last-child),
      .ant-btn-group-rtl.ant-btn-group
        > span:first-child:not(:last-child)
        > .ant-btn {
        border-radius: 0 2px 2px 0;
      }
      .ant-btn-group-rtl.ant-btn-group > .ant-btn:last-child:not(:first-child),
      .ant-btn-group-rtl.ant-btn-group
        > span:last-child:not(:first-child)
        > .ant-btn {
        border-radius: 2px 0 0 2px;
      }
      .ant-btn-group-rtl.ant-btn-group-sm
        > .ant-btn:first-child:not(:last-child),
      .ant-btn-group-rtl.ant-btn-group-sm
        > span:first-child:not(:last-child)
        > .ant-btn {
        border-radius: 0 2px 2px 0;
      }
      .ant-btn-group-rtl.ant-btn-group-sm
        > .ant-btn:last-child:not(:first-child),
      .ant-btn-group-rtl.ant-btn-group-sm
        > span:last-child:not(:first-child)
        > .ant-btn {
        border-radius: 2px 0 0 2px;
      }
      .ant-btn:focus > span,
      .ant-btn:active > span {
        position: relative;
      }
      .ant-btn > .anticon + span,
      .ant-btn > span + .anticon {
        margin-left: 8px;
      }
      .ant-btn.ant-btn-background-ghost {
        color: #fff;
        border-color: #fff;
      }
      .ant-btn.ant-btn-background-ghost,
      .ant-btn.ant-btn-background-ghost:hover,
      .ant-btn.ant-btn-background-ghost:active,
      .ant-btn.ant-btn-background-ghost:focus {
        background: rgba(0, 0, 0, 0);
      }
      .ant-btn.ant-btn-background-ghost:hover,
      .ant-btn.ant-btn-background-ghost:focus {
        color: #40a9ff;
        border-color: #40a9ff;
      }
      .ant-btn.ant-btn-background-ghost:active {
        color: #096dd9;
        border-color: #096dd9;
      }
      .ant-btn.ant-btn-background-ghost[disabled] {
        color: rgba(0, 0, 0, 0.25);
        background: rgba(0, 0, 0, 0);
        border-color: #d9d9d9;
      }
      .ant-btn-background-ghost.ant-btn-primary {
        color: #1890ff;
        border-color: #1890ff;
        text-shadow: none;
      }
      .ant-btn-background-ghost.ant-btn-primary > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-primary > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-primary:hover,
      .ant-btn-background-ghost.ant-btn-primary:focus {
        color: #40a9ff;
        border-color: #40a9ff;
      }
      .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
      .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-primary:active {
        color: #096dd9;
        border-color: #096dd9;
      }
      .ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-primary[disabled],
      .ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
      .ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
      .ant-btn-background-ghost.ant-btn-primary[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
      .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
      .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
      .ant-btn-background-ghost.ant-btn-primary[disabled]:active
        > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-primary[disabled]:hover
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-primary[disabled]:focus
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-primary[disabled]:active
        > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-danger {
        color: #ff4d4f;
        border-color: #ff4d4f;
        text-shadow: none;
      }
      .ant-btn-background-ghost.ant-btn-danger > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-danger > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-danger:hover,
      .ant-btn-background-ghost.ant-btn-danger:focus {
        color: #ff7875;
        border-color: #ff7875;
      }
      .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
      .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-danger:active {
        color: #d9363e;
        border-color: #d9363e;
      }
      .ant-btn-background-ghost.ant-btn-danger:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-danger[disabled],
      .ant-btn-background-ghost.ant-btn-danger[disabled]:hover,
      .ant-btn-background-ghost.ant-btn-danger[disabled]:focus,
      .ant-btn-background-ghost.ant-btn-danger[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child,
      .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
      .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
      .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-danger[disabled]:hover
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-danger[disabled]:focus
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-danger[disabled]:active
        > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-dangerous {
        color: #ff4d4f;
        border-color: #ff4d4f;
        text-shadow: none;
      }
      .ant-btn-background-ghost.ant-btn-dangerous > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-dangerous:hover,
      .ant-btn-background-ghost.ant-btn-dangerous:focus {
        color: #ff7875;
        border-color: #ff7875;
      }
      .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child,
      .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-dangerous:active {
        color: #d9363e;
        border-color: #d9363e;
      }
      .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-dangerous[disabled],
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover,
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child,
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover
        > a:only-child,
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus
        > a:only-child,
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active
        > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active
        > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link {
        color: #ff4d4f;
        border-color: rgba(0, 0, 0, 0);
        text-shadow: none;
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link
        > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus {
        color: #ff7875;
        border-color: rgba(0, 0, 0, 0);
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover
        > a:only-child,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus
        > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus
        > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active {
        color: #d9363e;
        border-color: rgba(0, 0, 0, 0);
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active
        > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active
        > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled],
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: #d9d9d9;
        background: #f5f5f5;
        text-shadow: none;
        box-shadow: none;
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]
        > a:only-child,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover
        > a:only-child,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus
        > a:only-child,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active
        > a:only-child {
        color: currentcolor;
      }
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus
        > a:only-child::after,
      .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active
        > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      .ant-btn-two-chinese-chars::first-letter {
        letter-spacing: 0.34em;
      }
      .ant-btn-two-chinese-chars > *:not(.anticon) {
        margin-right: -0.34em;
        letter-spacing: 0.34em;
      }
      .ant-btn.ant-btn-block {
        width: 100%;
      }
      .ant-btn:empty {
        display: inline-block;
        width: 0;
        visibility: hidden;
        content: " ";
      }
      a.ant-btn {
        padding-top: 0.01px !important;
        line-height: 30px;
      }
      a.ant-btn-disabled {
        cursor: not-allowed;
      }
      a.ant-btn-disabled > * {
        pointer-events: none;
      }
      a.ant-btn-disabled,
      a.ant-btn-disabled:hover,
      a.ant-btn-disabled:focus,
      a.ant-btn-disabled:active {
        color: rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        text-shadow: none;
        box-shadow: none;
      }
      a.ant-btn-disabled > a:only-child,
      a.ant-btn-disabled:hover > a:only-child,
      a.ant-btn-disabled:focus > a:only-child,
      a.ant-btn-disabled:active > a:only-child {
        color: currentcolor;
      }
      a.ant-btn-disabled > a:only-child::after,
      a.ant-btn-disabled:hover > a:only-child::after,
      a.ant-btn-disabled:focus > a:only-child::after,
      a.ant-btn-disabled:active > a:only-child::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0);
        content: "";
      }
      a.ant-btn-lg {
        line-height: 38px;
      }
      a.ant-btn-sm {
        line-height: 22px;
      }
      .ant-btn-compact-item:not(.ant-btn-compact-last-item):not(
          .ant-btn-compact-item-rtl
        ) {
        margin-right: -1px;
      }
      .ant-btn-compact-item:not(
          .ant-btn-compact-last-item
        ).ant-btn-compact-item-rtl {
        margin-left: -1px;
      }
      .ant-btn-compact-item:hover,
      .ant-btn-compact-item:focus,
      .ant-btn-compact-item:active {
        z-index: 2;
      }
      .ant-btn-compact-item[disabled] {
        z-index: 0;
      }
      .ant-btn-compact-item:not(.ant-btn-compact-first-item):not(
          .ant-btn-compact-last-item
        ).ant-btn {
        border-radius: 0;
      }
      .ant-btn-compact-item.ant-btn.ant-btn-compact-first-item:not(
          .ant-btn-compact-last-item
        ):not(.ant-btn-compact-item-rtl) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-btn-compact-item.ant-btn.ant-btn-compact-last-item:not(
          .ant-btn-compact-first-item
        ):not(.ant-btn-compact-item-rtl) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-first-item:not(
          .ant-btn-compact-last-item
        ) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-last-item:not(
          .ant-btn-compact-first-item
        ) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-btn-icon-only.ant-btn-compact-item {
        flex: none;
      }
      .ant-btn-compact-item.ant-btn-primary:not([disabled])
        + .ant-btn-compact-item.ant-btn-primary:not([disabled]) {
        position: relative;
      }
      .ant-btn-compact-item.ant-btn-primary:not([disabled])
        + .ant-btn-compact-item.ant-btn-primary:not([disabled])::after {
        position: absolute;
        top: -1px;
        left: -1px;
        display: inline-block;
        width: 1px;
        height: calc(100% + 2px);
        background-color: #40a9ff;
        content: " ";
      }
      .ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(
          .ant-btn-compact-last-item
        ) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-btn-compact-item-rtl.ant-btn-compact-last-item.ant-btn-compact-item-rtl:not(
          .ant-btn-compact-first-item
        ) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-first-item.ant-btn-compact-item-rtl.ant-btn-sm:not(
          .ant-btn-compact-last-item
        ) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-last-item.ant-btn-compact-item-rtl.ant-btn-sm:not(
          .ant-btn-compact-first-item
        ) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
      .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])
        + .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])::after {
        right: -1px;
      }
      .ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-last-item) {
        margin-bottom: -1px;
      }
      .ant-btn-compact-vertical-item:hover,
      .ant-btn-compact-vertical-item:focus,
      .ant-btn-compact-vertical-item:active {
        z-index: 2;
      }
      .ant-btn-compact-vertical-item[disabled] {
        z-index: 0;
      }
      .ant-btn-compact-vertical-item:not(
          .ant-btn-compact-vertical-first-item
        ):not(.ant-btn-compact-vertical-last-item) {
        border-radius: 0;
      }
      .ant-btn-compact-vertical-item.ant-btn-compact-vertical-first-item:not(
          .ant-btn-compact-vertical-last-item
        ) {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
      }
      .ant-btn-compact-vertical-item.ant-btn-compact-vertical-last-item:not(
          .ant-btn-compact-vertical-first-item
        ) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
      }
      .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])
        + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) {
        position: relative;
      }
      .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])
        + .ant-btn-compact-vertical-item.ant-btn-primary:not(
          [disabled]
        )::after {
        position: absolute;
        top: -1px;
        left: -1px;
        display: inline-block;
        width: calc(100% + 2px);
        height: 1px;
        background-color: #40a9ff;
        content: " ";
      }
      .ant-btn-rtl {
        direction: rtl;
      }
      .ant-btn-group-rtl.ant-btn-group
        .ant-btn-primary:last-child:not(:first-child),
      .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {
        border-right-color: #40a9ff;
        border-left-color: #d9d9d9;
      }
      .ant-btn-group-rtl.ant-btn-group
        .ant-btn-primary:last-child:not(:first-child)[disabled],
      .ant-btn-group-rtl.ant-btn-group
        .ant-btn-primary
        + .ant-btn-primary[disabled] {
        border-right-color: #d9d9d9;
        border-left-color: #40a9ff;
      }
      .ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon {
        padding-right: 0;
        padding-left: 8px;
      }
      .ant-btn-rtl.ant-btn > .anticon + span,
      .ant-btn-rtl.ant-btn > span + .anticon {
        margin-right: 8px;
        margin-left: 0;
      }
   
      .ant-carousel {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
      }
      .ant-carousel .slick-slider {
        position: relative;
        display: block;
        box-sizing: border-box;
        touch-action: pan-y;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      }
      .ant-carousel .slick-list {
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
        overflow: hidden;
      }
      .ant-carousel .slick-list:focus {
        outline: none;
      }
      .ant-carousel .slick-list.dragging {
        cursor: pointer;
      }
      .ant-carousel .slick-list .slick-slide {
        pointer-events: none;
      }
      .ant-carousel .slick-list .slick-slide input.ant-radio-input,
      .ant-carousel .slick-list .slick-slide input.ant-checkbox-input {
        visibility: hidden;
      }
      .ant-carousel .slick-list .slick-slide.slick-active {
        pointer-events: auto;
      }
      .ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input,
      .ant-carousel
        .slick-list
        .slick-slide.slick-active
        input.ant-checkbox-input {
        visibility: visible;
      }
      .ant-carousel .slick-list .slick-slide > div > div {
        vertical-align: bottom;
      }
      .ant-carousel .slick-slider .slick-track,
      .ant-carousel .slick-slider .slick-list {
        transform: translate3d(0, 0, 0);
        touch-action: pan-y;
      }
      .ant-carousel .slick-track {
        position: relative;
        top: 0;
        left: 0;
        display: block;
      }
      .ant-carousel .slick-track::before,
      .ant-carousel .slick-track::after {
        display: table;
        content: "";
      }
      .ant-carousel .slick-track::after {
        clear: both;
      }
      .slick-loading .ant-carousel .slick-track {
        visibility: hidden;
      }
      .ant-carousel .slick-slide {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
      }
      .ant-carousel .slick-slide img {
        display: block;
      }
      .ant-carousel .slick-slide.slick-loading img {
        display: none;
      }
      .ant-carousel .slick-slide.dragging img {
        pointer-events: none;
      }
      .ant-carousel .slick-initialized .slick-slide {
        display: block;
      }
      .ant-carousel .slick-loading .slick-slide {
        visibility: hidden;
      }
      .ant-carousel .slick-vertical .slick-slide {
        display: block;
        height: auto;
      }
      .ant-carousel .slick-arrow.slick-hidden {
        display: none;
      }
      .ant-carousel .slick-prev,
      .ant-carousel .slick-next {
        position: absolute;
        top: 50%;
        display: block;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        padding: 0;
        color: rgba(0, 0, 0, 0);
        font-size: 0;
        line-height: 0;
        background: rgba(0, 0, 0, 0);
        border: 0;
        outline: none;
        cursor: pointer;
      }
      .ant-carousel .slick-prev:hover,
      .ant-carousel .slick-next:hover,
      .ant-carousel .slick-prev:focus,
      .ant-carousel .slick-next:focus {
        color: rgba(0, 0, 0, 0);
        background: rgba(0, 0, 0, 0);
        outline: none;
      }
      .ant-carousel .slick-prev:hover::before,
      .ant-carousel .slick-next:hover::before,
      .ant-carousel .slick-prev:focus::before,
      .ant-carousel .slick-next:focus::before {
        opacity: 1;
      }
      .ant-carousel .slick-prev.slick-disabled::before,
      .ant-carousel .slick-next.slick-disabled::before {
        opacity: 0.25;
      }
      .ant-carousel .slick-prev {
        left: -25px;
      }
      .ant-carousel .slick-prev::before {
        content: "←";
      }
      .ant-carousel .slick-next {
        right: -25px;
      }
      .ant-carousel .slick-next::before {
        content: "→";
      }
      .ant-carousel .slick-dots {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 15;
        display: flex !important;
        justify-content: center;
        margin-right: 15%;
        margin-bottom: 0;
        margin-left: 15%;
        padding-left: 0;
        list-style: none;
      }
      .ant-carousel .slick-dots-bottom {
        bottom: 12px;
      }
      .ant-carousel .slick-dots-top {
        top: 12px;
        bottom: auto;
      }
      .ant-carousel .slick-dots li {
        position: relative;
        display: inline-block;
        flex: 0 1 auto;
        box-sizing: content-box;
        width: 16px;
        height: 3px;
        margin: 0 4px;
        padding: 0;
        text-align: center;
        text-indent: -999px;
        vertical-align: top;
        transition: all 0.5s;
      }
      .ant-carousel .slick-dots li button {
        position: relative;
        display: block;
        width: 100%;
        height: 3px;
        padding: 0;
        color: rgba(0, 0, 0, 0);
        font-size: 0;
        background: #fff;
        border: 0;
        border-radius: 1px;
        outline: none;
        cursor: pointer;
        opacity: 0.3;
        transition: all 0.5s;
      }
      .ant-carousel .slick-dots li button:hover,
      .ant-carousel .slick-dots li button:focus {
        opacity: 0.75;
      }
      .ant-carousel .slick-dots li button::after {
        position: absolute;
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
        content: "";
      }
      .ant-carousel .slick-dots li.slick-active {
        width: 24px;
      }
      .ant-carousel .slick-dots li.slick-active button {
        background: #fff;
        opacity: 1;
      }
      .ant-carousel .slick-dots li.slick-active:hover,
      .ant-carousel .slick-dots li.slick-active:focus {
        opacity: 1;
      }
      .ant-carousel-vertical .slick-dots {
        top: 50%;
        bottom: auto;
        flex-direction: column;
        width: 3px;
        height: auto;
        margin: 0;
        transform: translateY(-50%);
      }
      .ant-carousel-vertical .slick-dots-left {
        right: auto;
        left: 12px;
      }
      .ant-carousel-vertical .slick-dots-right {
        right: 12px;
        left: auto;
      }
      .ant-carousel-vertical .slick-dots li {
        width: 3px;
        height: 16px;
        margin: 4px 0;
        vertical-align: baseline;
      }
      .ant-carousel-vertical .slick-dots li button {
        width: 3px;
        height: 16px;
      }
      .ant-carousel-vertical .slick-dots li.slick-active {
        width: 3px;
        height: 24px;
      }
      .ant-carousel-vertical .slick-dots li.slick-active button {
        width: 3px;
        height: 24px;
      }
      .ant-carousel-rtl {
        direction: rtl;
      }
      .ant-carousel-rtl .ant-carousel .slick-track {
        right: 0;
        left: auto;
      }
      .ant-carousel-rtl .ant-carousel .slick-prev {
        right: -25px;
        left: auto;
      }
      .ant-carousel-rtl .ant-carousel .slick-prev::before {
        content: "→";
      }
      .ant-carousel-rtl .ant-carousel .slick-next {
        right: auto;
        left: -25px;
      }
      .ant-carousel-rtl .ant-carousel .slick-next::before {
        content: "←";
      }
      .ant-carousel-rtl.ant-carousel .slick-dots {
        flex-direction: row-reverse;
      }
      .ant-carousel-rtl.ant-carousel-vertical .slick-dots {
        flex-direction: column;
      }
   
      .ant-divider {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        border-top: 1px solid rgba(0, 0, 0, 0.06);
      }
      .ant-divider-vertical {
        position: relative;
        top: -0.06em;
        display: inline-block;
        height: 0.9em;
        margin: 0 8px;
        vertical-align: middle;
        border-top: 0;
        border-left: 1px solid rgba(0, 0, 0, 0.06);
      }
      .ant-divider-horizontal {
        display: flex;
        clear: both;
        width: 100%;
        min-width: 100%;
        margin: 24px 0;
      }
      .ant-divider-horizontal.ant-divider-with-text {
        display: flex;
        align-items: center;
        margin: 16px 0;
        color: rgba(0, 0, 0, 0.85);
        font-weight: 500;
        font-size: 16px;
        white-space: nowrap;
        text-align: center;
        border-top: 0;
        border-top-color: rgba(0, 0, 0, 0.06);
      }
      .ant-divider-horizontal.ant-divider-with-text::before,
      .ant-divider-horizontal.ant-divider-with-text::after {
        position: relative;
        width: 50%;
        border-top: 1px solid rgba(0, 0, 0, 0);
        border-top-color: inherit;
        border-bottom: 0;
        transform: translateY(50%);
        content: "";
      }
      .ant-divider-horizontal.ant-divider-with-text-left::before {
        width: 5%;
      }
      .ant-divider-horizontal.ant-divider-with-text-left::after {
        width: 95%;
      }
      .ant-divider-horizontal.ant-divider-with-text-right::before {
        width: 95%;
      }
      .ant-divider-horizontal.ant-divider-with-text-right::after {
        width: 5%;
      }
      .ant-divider-inner-text {
        display: inline-block;
        padding: 0 1em;
      }
      .ant-divider-dashed {
        background: none;
        border-color: rgba(0, 0, 0, 0.06);
        border-style: dashed;
        border-width: 1px 0 0;
      }
      .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before,
      .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after {
        border-style: dashed none none;
      }
      .ant-divider-vertical.ant-divider-dashed {
        border-width: 0 0 0 1px;
      }
      .ant-divider-plain.ant-divider-with-text {
        color: rgba(0, 0, 0, 0.85);
        font-weight: normal;
        font-size: 14px;
      }
      .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before {
        width: 0;
      }
      .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after {
        width: 100%;
      }
      .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left
        .ant-divider-inner-text {
        padding-left: 0;
      }
      .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before {
        width: 100%;
      }
      .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after {
        width: 0;
      }
      .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right
        .ant-divider-inner-text {
        padding-right: 0;
      }
      .ant-divider-rtl {
        direction: rtl;
      }
      .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before {
        width: 95%;
      }
      .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after {
        width: 5%;
      }
      .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before {
        width: 5%;
      }
      .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after {
        width: 95%;
      }
    
      .ant-form-item .ant-input-number + .ant-form-text {
        margin-left: 8px;
      }
      .ant-form-inline {
        display: flex;
        flex-wrap: wrap;
      }
      .ant-form-inline .ant-form-item {
        flex: none;
        flex-wrap: nowrap;
        margin-right: 16px;
        margin-bottom: 0;
      }
      .ant-form-inline .ant-form-item-with-help {
        margin-bottom: 24px;
      }
      .ant-form-inline .ant-form-item > .ant-form-item-label,
      .ant-form-inline .ant-form-item > .ant-form-item-control {
        display: inline-block;
        vertical-align: top;
      }
      .ant-form-inline .ant-form-item > .ant-form-item-label {
        flex: none;
      }
      .ant-form-inline .ant-form-item .ant-form-text {
        display: inline-block;
      }
      .ant-form-inline .ant-form-item .ant-form-item-has-feedback {
        display: inline-block;
      }
      .ant-form-horizontal .ant-form-item-label {
        flex-grow: 0;
      }
      .ant-form-horizontal .ant-form-item-control {
        flex: 1 1 0;
        min-width: 0;
      }
      .ant-form-horizontal
        .ant-form-item-label[class$="-24"]
        + .ant-form-item-control,
      .ant-form-horizontal
        .ant-form-item-label[class*="-24 "]
        + .ant-form-item-control {
        min-width: unset;
      }
      .ant-form-vertical .ant-form-item-row {
        flex-direction: column;
      }
      .ant-form-vertical .ant-form-item-label > label {
        height: auto;
      }
      .ant-form-vertical .ant-form-item .ant-form-item-control {
        width: 100%;
      }
      .ant-form-vertical .ant-form-item-label,
      .ant-col-24.ant-form-item-label,
      .ant-col-xl-24.ant-form-item-label {
        padding: 0 0 8px;
        line-height: 1.5715;
        white-space: initial;
        text-align: left;
      }
      .ant-form-vertical .ant-form-item-label > label,
      .ant-col-24.ant-form-item-label > label,
      .ant-col-xl-24.ant-form-item-label > label {
        margin: 0;
      }
      .ant-form-vertical .ant-form-item-label > label::after,
      .ant-col-24.ant-form-item-label > label::after,
      .ant-col-xl-24.ant-form-item-label > label::after {
        display: none;
      }
      .ant-form-rtl.ant-form-vertical .ant-form-item-label,
      .ant-form-rtl.ant-col-24.ant-form-item-label,
      .ant-form-rtl.ant-col-xl-24.ant-form-item-label {
        text-align: right;
      }
      @media (max-width: 575px) {
        .ant-form-item .ant-form-item-label {
          padding: 0 0 8px;
          line-height: 1.5715;
          white-space: initial;
          text-align: left;
        }
        .ant-form-item .ant-form-item-label > label {
          margin: 0;
        }
        .ant-form-item .ant-form-item-label > label::after {
          display: none;
        }
        .ant-form-rtl.ant-form-item .ant-form-item-label {
          text-align: right;
        }
        .ant-form .ant-form-item {
          flex-wrap: wrap;
        }
        .ant-form .ant-form-item .ant-form-item-label,
        .ant-form .ant-form-item .ant-form-item-control {
          flex: 0 0 100%;
          max-width: 100%;
        }
        .ant-col-xs-24.ant-form-item-label {
          padding: 0 0 8px;
          line-height: 1.5715;
          white-space: initial;
          text-align: left;
        }
        .ant-col-xs-24.ant-form-item-label > label {
          margin: 0;
        }
        .ant-col-xs-24.ant-form-item-label > label::after {
          display: none;
        }
        .ant-form-rtl.ant-col-xs-24.ant-form-item-label {
          text-align: right;
        }
      }
      @media (max-width: 767px) {
        .ant-col-sm-24.ant-form-item-label {
          padding: 0 0 8px;
          line-height: 1.5715;
          white-space: initial;
          text-align: left;
        }
        .ant-col-sm-24.ant-form-item-label > label {
          margin: 0;
        }
        .ant-col-sm-24.ant-form-item-label > label::after {
          display: none;
        }
        .ant-form-rtl.ant-col-sm-24.ant-form-item-label {
          text-align: right;
        }
      }
      @media (max-width: 991px) {
        .ant-col-md-24.ant-form-item-label {
          padding: 0 0 8px;
          line-height: 1.5715;
          white-space: initial;
          text-align: left;
        }
        .ant-col-md-24.ant-form-item-label > label {
          margin: 0;
        }
        .ant-col-md-24.ant-form-item-label > label::after {
          display: none;
        }
        .ant-form-rtl.ant-col-md-24.ant-form-item-label {
          text-align: right;
        }
      }
      @media (max-width: 1199px) {
        .ant-col-lg-24.ant-form-item-label {
          padding: 0 0 8px;
          line-height: 1.5715;
          white-space: initial;
          text-align: left;
        }
        .ant-col-lg-24.ant-form-item-label > label {
          margin: 0;
        }
        .ant-col-lg-24.ant-form-item-label > label::after {
          display: none;
        }
        .ant-form-rtl.ant-col-lg-24.ant-form-item-label {
          text-align: right;
        }
      }
      @media (max-width: 1599px) {
        .ant-col-xl-24.ant-form-item-label {
          padding: 0 0 8px;
          line-height: 1.5715;
          white-space: initial;
          text-align: left;
        }
        .ant-col-xl-24.ant-form-item-label > label {
          margin: 0;
        }
        .ant-col-xl-24.ant-form-item-label > label::after {
          display: none;
        }
        .ant-form-rtl.ant-col-xl-24.ant-form-item-label {
          text-align: right;
        }
      }
      .ant-form-item-explain-error {
        color: #ff4d4f;
      }
      .ant-form-item-explain-warning {
        color: #faad14;
      }
      .ant-form-item-has-feedback .ant-switch {
        margin: 2px 0 4px;
      }
      .ant-form-item-has-warning .ant-form-item-split {
        color: #faad14;
      }
      .ant-form-item-has-error .ant-form-item-split {
        color: #ff4d4f;
      }
      .ant-form {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
      }
      .ant-form legend {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
        color: rgba(0, 0, 0, 0.45);
        font-size: 16px;
        line-height: inherit;
        border: 0;
        border-bottom: 1px solid #d9d9d9;
      }
      .ant-form label {
        font-size: 14px;
      }
      .ant-form input[type="search"] {
        box-sizing: border-box;
      }
      .ant-form input[type="radio"],
      .ant-form input[type="checkbox"] {
        line-height: normal;
      }
      .ant-form input[type="file"] {
        display: block;
      }
      .ant-form input[type="range"] {
        display: block;
        width: 100%;
      }
      .ant-form select[multiple],
      .ant-form select[size] {
        height: auto;
      }
      .ant-form input[type="file"]:focus,
      .ant-form input[type="radio"]:focus,
      .ant-form input[type="checkbox"]:focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
      }
      .ant-form output {
        display: block;
        padding-top: 15px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        line-height: 1.5715;
      }
      .ant-form .ant-form-text {
        display: inline-block;
        padding-right: 8px;
      }
      .ant-form-small .ant-form-item-label > label {
        height: 24px;
      }
      .ant-form-small .ant-form-item-control-input {
        min-height: 24px;
      }
      .ant-form-large .ant-form-item-label > label {
        height: 40px;
      }
      .ant-form-large .ant-form-item-control-input {
        min-height: 40px;
      }
      .ant-form-item {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        margin-bottom: 24px;
        vertical-align: top;
      }
      .ant-form-item-with-help {
        transition: none;
      }
      .ant-form-item-hidden,
      .ant-form-item-hidden.ant-row {
        display: none;
      }
      .ant-form-item-label {
        display: inline-block;
        flex-grow: 0;
        overflow: hidden;
        white-space: nowrap;
        text-align: right;
        vertical-align: middle;
      }
      .ant-form-item-label-left {
        text-align: left;
      }
      .ant-form-item-label-wrap {
        overflow: unset;
        line-height: 1.3215em;
        white-space: unset;
      }
      .ant-form-item-label > label {
        position: relative;
        display: inline-flex;
        align-items: center;
        max-width: 100%;
        height: 32px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
      }
      .ant-form-item-label > label > .anticon {
        font-size: 14px;
        vertical-align: top;
      }
      .ant-form-item-label
        > label.ant-form-item-required:not(
          .ant-form-item-required-mark-optional
        )::before {
        display: inline-block;
        margin-right: 4px;
        color: #ff4d4f;
        font-size: 14px;
        font-family: SimSun, sans-serif;
        line-height: 1;
        content: "*";
      }
      .ant-form-hide-required-mark
        .ant-form-item-label
        > label.ant-form-item-required:not(
          .ant-form-item-required-mark-optional
        )::before {
        display: none;
      }
      .ant-form-item-label > label .ant-form-item-optional {
        display: inline-block;
        margin-left: 4px;
        color: rgba(0, 0, 0, 0.45);
      }
      .ant-form-hide-required-mark
        .ant-form-item-label
        > label
        .ant-form-item-optional {
        display: none;
      }
      .ant-form-item-label > label .ant-form-item-tooltip {
        color: rgba(0, 0, 0, 0.45);
        cursor: help;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        -webkit-margin-start: 4px;
        margin-inline-start: 4px;
      }
      .ant-form-item-label > label::after {
        content: ":";
        position: relative;
        top: -0.5px;
        margin: 0 8px 0 2px;
      }
      .ant-form-item-label > label.ant-form-item-no-colon::after {
        content: " ";
      }
      .ant-form-item-control {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }
      .ant-form-item-control:first-child:not([class^="ant-col-"]):not(
          [class*=" ant-col-"]
        ) {
        width: 100%;
      }
      .ant-form-item-control-input {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 32px;
      }
      .ant-form-item-control-input-content {
        flex: auto;
        max-width: 100%;
      }
      .ant-form-item-explain,
      .ant-form-item-extra {
        clear: both;
        color: rgba(0, 0, 0, 0.45);
        font-size: 14px;
        line-height: 1.5715;
        transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
      }
      .ant-form-item-explain-connected {
        width: 100%;
      }
      .ant-form-item-extra {
        min-height: 24px;
      }
      .ant-form-item-with-help .ant-form-item-explain {
        height: auto;
        opacity: 1;
      }
      .ant-form-item-feedback-icon {
        font-size: 14px;
        text-align: center;
        visibility: visible;
        animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
        pointer-events: none;
      }
      .ant-form-item-feedback-icon-success {
        color: #52c41a;
      }
      .ant-form-item-feedback-icon-error {
        color: #ff4d4f;
      }
      .ant-form-item-feedback-icon-warning {
        color: #faad14;
      }
      .ant-form-item-feedback-icon-validating {
        color: #1890ff;
      }
      .ant-show-help {
        transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
      }
      .ant-show-help-appear,
      .ant-show-help-enter {
        opacity: 0;
      }
      .ant-show-help-appear-active,
      .ant-show-help-enter-active {
        opacity: 1;
      }
      .ant-show-help-leave {
        opacity: 1;
      }
      .ant-show-help-leave-active {
        opacity: 0;
      }
      .ant-show-help-item {
        overflow: hidden;
        transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
          opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
          transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
      }
      .ant-show-help-item-appear,
      .ant-show-help-item-enter {
        transform: translateY(-5px);
        opacity: 0;
      }
      .ant-show-help-item-appear-active,
      .ant-show-help-item-enter-active {
        transform: translateY(0);
        opacity: 1;
      }
      .ant-show-help-item-leave {
        transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
          opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
          transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
      }
      .ant-show-help-item-leave-active {
        transform: translateY(-5px);
      }
      @keyframes diffZoomIn1 {
        0% {
          transform: scale(0);
          opacity: 0;
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
      }
      @keyframes diffZoomIn2 {
        0% {
          transform: scale(0);
          opacity: 0;
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
      }
      @keyframes diffZoomIn3 {
        0% {
          transform: scale(0);
          opacity: 0;
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
      }
      .ant-form-rtl {
        direction: rtl;
      }
      .ant-form-rtl .ant-form-item-label {
        text-align: left;
      }
      .ant-form-rtl
        .ant-form-item-label
        > label.ant-form-item-required::before {
        margin-right: 0;
        margin-left: 4px;
      }
      .ant-form-rtl .ant-form-item-label > label::after {
        margin: 0 2px 0 8px;
      }
      .ant-form-rtl .ant-form-item-label > label .ant-form-item-optional {
        margin-right: 4px;
        margin-left: 0;
      }
      .ant-col-rtl .ant-form-item-control:first-child {
        width: 100%;
      }
      .ant-form-rtl .ant-form-item-has-feedback .ant-input {
        padding-right: 11px;
        padding-left: 24px;
      }
      .ant-form-rtl
        .ant-form-item-has-feedback
        .ant-input-affix-wrapper
        .ant-input-suffix {
        padding-right: 11px;
        padding-left: 18px;
      }
      .ant-form-rtl
        .ant-form-item-has-feedback
        .ant-input-affix-wrapper
        .ant-input {
        padding: 0;
      }
      .ant-form-rtl
        .ant-form-item-has-feedback
        .ant-input-number-affix-wrapper
        .ant-input-number {
        padding: 0;
      }
      .ant-form-rtl
        .ant-form-item-has-feedback
        .ant-input-search:not(.ant-input-search-enter-button)
        .ant-input-suffix {
        right: auto;
        left: 28px;
      }
      .ant-form-rtl .ant-form-item-has-feedback .ant-input-number {
        padding-left: 18px;
      }
      .ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-arrow,
      .ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-clear,
      .ant-form-rtl
        .ant-form-item-has-feedback
        :not(.ant-input-group-addon)
        > .ant-select
        .ant-select-arrow,
      .ant-form-rtl
        .ant-form-item-has-feedback
        :not(.ant-input-group-addon)
        > .ant-select
        .ant-select-clear,
      .ant-form-rtl
        .ant-form-item-has-feedback
        :not(.ant-input-number-group-addon)
        > .ant-select
        .ant-select-arrow,
      .ant-form-rtl
        .ant-form-item-has-feedback
        :not(.ant-input-number-group-addon)
        > .ant-select
        .ant-select-clear {
        right: auto;
        left: 32px;
      }
      .ant-form-rtl
        .ant-form-item-has-feedback
        > .ant-select
        .ant-select-selection-selected-value,
      .ant-form-rtl
        .ant-form-item-has-feedback
        :not(.ant-input-group-addon)
        > .ant-select
        .ant-select-selection-selected-value,
      .ant-form-rtl
        .ant-form-item-has-feedback
        :not(.ant-input-number-group-addon)
        > .ant-select
        .ant-select-selection-selected-value {
        padding-right: 0;
        padding-left: 42px;
      }
      .ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-arrow {
        margin-right: 0;
        margin-left: 19px;
      }
      .ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-clear {
        right: auto;
        left: 32px;
      }
      .ant-form-rtl .ant-form-item-has-feedback .ant-picker {
        padding-right: 11px;
        padding-left: 29.2px;
      }
      .ant-form-rtl .ant-form-item-has-feedback .ant-picker-large {
        padding-right: 11px;
        padding-left: 29.2px;
      }
      .ant-form-rtl .ant-form-item-has-feedback .ant-picker-small {
        padding-right: 7px;
        padding-left: 25.2px;
      }
      .ant-form-rtl
        .ant-form-item-has-feedback.ant-form-item-has-success
        .ant-form-item-children-icon,
      .ant-form-rtl
        .ant-form-item-has-feedback.ant-form-item-has-warning
        .ant-form-item-children-icon,
      .ant-form-rtl
        .ant-form-item-has-feedback.ant-form-item-has-error
        .ant-form-item-children-icon,
      .ant-form-rtl
        .ant-form-item-has-feedback.ant-form-item-is-validating
        .ant-form-item-children-icon {
        right: auto;
        left: 0;
      }
      .ant-form-rtl.ant-form-inline .ant-form-item {
        margin-right: 0;
        margin-left: 16px;
      }
    
      .ant-row {
        display: flex;
        flex-flow: row wrap;
        min-width: 0;
      }
      .ant-row::before,
      .ant-row::after {
        display: flex;
      }
      .ant-row-no-wrap {
        flex-wrap: nowrap;
      }
      .ant-row-start {
        justify-content: flex-start;
      }
      .ant-row-center {
        justify-content: center;
      }
      .ant-row-end {
        justify-content: flex-end;
      }
      .ant-row-space-between {
        justify-content: space-between;
      }
      .ant-row-space-around {
        justify-content: space-around;
      }
      .ant-row-space-evenly {
        justify-content: space-evenly;
      }
      .ant-row-top {
        align-items: flex-start;
      }
      .ant-row-middle {
        align-items: center;
      }
      .ant-row-bottom {
        align-items: flex-end;
      }
      .ant-col {
        position: relative;
        max-width: 100%;
        min-height: 1px;
      }
      .ant-col-24 {
        display: block;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .ant-col-push-24 {
        left: 100%;
      }
      .ant-col-pull-24 {
        right: 100%;
      }
      .ant-col-offset-24 {
        margin-left: 100%;
      }
      .ant-col-order-24 {
        order: 24;
      }
      .ant-col-23 {
        display: block;
        flex: 0 0 95.83333333%;
        max-width: 95.83333333%;
      }
      .ant-col-push-23 {
        left: 95.83333333%;
      }
      .ant-col-pull-23 {
        right: 95.83333333%;
      }
      .ant-col-offset-23 {
        margin-left: 95.83333333%;
      }
      .ant-col-order-23 {
        order: 23;
      }
      .ant-col-22 {
        display: block;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
      }
      .ant-col-push-22 {
        left: 91.66666667%;
      }
      .ant-col-pull-22 {
        right: 91.66666667%;
      }
      .ant-col-offset-22 {
        margin-left: 91.66666667%;
      }
      .ant-col-order-22 {
        order: 22;
      }
      .ant-col-21 {
        display: block;
        flex: 0 0 87.5%;
        max-width: 87.5%;
      }
      .ant-col-push-21 {
        left: 87.5%;
      }
      .ant-col-pull-21 {
        right: 87.5%;
      }
      .ant-col-offset-21 {
        margin-left: 87.5%;
      }
      .ant-col-order-21 {
        order: 21;
      }
      .ant-col-20 {
        display: block;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
      }
      .ant-col-push-20 {
        left: 83.33333333%;
      }
      .ant-col-pull-20 {
        right: 83.33333333%;
      }
      .ant-col-offset-20 {
        margin-left: 83.33333333%;
      }
      .ant-col-order-20 {
        order: 20;
      }
      .ant-col-19 {
        display: block;
        flex: 0 0 79.16666667%;
        max-width: 79.16666667%;
      }
      .ant-col-push-19 {
        left: 79.16666667%;
      }
      .ant-col-pull-19 {
        right: 79.16666667%;
      }
      .ant-col-offset-19 {
        margin-left: 79.16666667%;
      }
      .ant-col-order-19 {
        order: 19;
      }
      .ant-col-18 {
        display: block;
        flex: 0 0 75%;
        max-width: 75%;
      }
      .ant-col-push-18 {
        left: 75%;
      }
      .ant-col-pull-18 {
        right: 75%;
      }
      .ant-col-offset-18 {
        margin-left: 75%;
      }
      .ant-col-order-18 {
        order: 18;
      }
      .ant-col-17 {
        display: block;
        flex: 0 0 70.83333333%;
        max-width: 70.83333333%;
      }
      .ant-col-push-17 {
        left: 70.83333333%;
      }
      .ant-col-pull-17 {
        right: 70.83333333%;
      }
      .ant-col-offset-17 {
        margin-left: 70.83333333%;
      }
      .ant-col-order-17 {
        order: 17;
      }
      .ant-col-16 {
        display: block;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
      }
      .ant-col-push-16 {
        left: 66.66666667%;
      }
      .ant-col-pull-16 {
        right: 66.66666667%;
      }
      .ant-col-offset-16 {
        margin-left: 66.66666667%;
      }
      .ant-col-order-16 {
        order: 16;
      }
      .ant-col-15 {
        display: block;
        flex: 0 0 62.5%;
        max-width: 62.5%;
      }
      .ant-col-push-15 {
        left: 62.5%;
      }
      .ant-col-pull-15 {
        right: 62.5%;
      }
      .ant-col-offset-15 {
        margin-left: 62.5%;
      }
      .ant-col-order-15 {
        order: 15;
      }
      .ant-col-14 {
        display: block;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
      }
      .ant-col-push-14 {
        left: 58.33333333%;
      }
      .ant-col-pull-14 {
        right: 58.33333333%;
      }
      .ant-col-offset-14 {
        margin-left: 58.33333333%;
      }
      .ant-col-order-14 {
        order: 14;
      }
      .ant-col-13 {
        display: block;
        flex: 0 0 54.16666667%;
        max-width: 54.16666667%;
      }
      .ant-col-push-13 {
        left: 54.16666667%;
      }
      .ant-col-pull-13 {
        right: 54.16666667%;
      }
      .ant-col-offset-13 {
        margin-left: 54.16666667%;
      }
      .ant-col-order-13 {
        order: 13;
      }
      .ant-col-12 {
        display: block;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .ant-col-push-12 {
        left: 50%;
      }
      .ant-col-pull-12 {
        right: 50%;
      }
      .ant-col-offset-12 {
        margin-left: 50%;
      }
      .ant-col-order-12 {
        order: 12;
      }
      .ant-col-11 {
        display: block;
        flex: 0 0 45.83333333%;
        max-width: 45.83333333%;
      }
      .ant-col-push-11 {
        left: 45.83333333%;
      }
      .ant-col-pull-11 {
        right: 45.83333333%;
      }
      .ant-col-offset-11 {
        margin-left: 45.83333333%;
      }
      .ant-col-order-11 {
        order: 11;
      }
      .ant-col-10 {
        display: block;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
      }
      .ant-col-push-10 {
        left: 41.66666667%;
      }
      .ant-col-pull-10 {
        right: 41.66666667%;
      }
      .ant-col-offset-10 {
        margin-left: 41.66666667%;
      }
      .ant-col-order-10 {
        order: 10;
      }
      .ant-col-9 {
        display: block;
        flex: 0 0 37.5%;
        max-width: 37.5%;
      }
      .ant-col-push-9 {
        left: 37.5%;
      }
      .ant-col-pull-9 {
        right: 37.5%;
      }
      .ant-col-offset-9 {
        margin-left: 37.5%;
      }
      .ant-col-order-9 {
        order: 9;
      }
      .ant-col-8 {
        display: block;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
      }
      .ant-col-push-8 {
        left: 33.33333333%;
      }
      .ant-col-pull-8 {
        right: 33.33333333%;
      }
      .ant-col-offset-8 {
        margin-left: 33.33333333%;
      }
      .ant-col-order-8 {
        order: 8;
      }
      .ant-col-7 {
        display: block;
        flex: 0 0 29.16666667%;
        max-width: 29.16666667%;
      }
      .ant-col-push-7 {
        left: 29.16666667%;
      }
      .ant-col-pull-7 {
        right: 29.16666667%;
      }
      .ant-col-offset-7 {
        margin-left: 29.16666667%;
      }
      .ant-col-order-7 {
        order: 7;
      }
      .ant-col-6 {
        display: block;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .ant-col-push-6 {
        left: 25%;
      }
      .ant-col-pull-6 {
        right: 25%;
      }
      .ant-col-offset-6 {
        margin-left: 25%;
      }
      .ant-col-order-6 {
        order: 6;
      }
      .ant-col-5 {
        display: block;
        flex: 0 0 20.83333333%;
        max-width: 20.83333333%;
      }
      .ant-col-push-5 {
        left: 20.83333333%;
      }
      .ant-col-pull-5 {
        right: 20.83333333%;
      }
      .ant-col-offset-5 {
        margin-left: 20.83333333%;
      }
      .ant-col-order-5 {
        order: 5;
      }
      .ant-col-4 {
        display: block;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
      }
      .ant-col-push-4 {
        left: 16.66666667%;
      }
      .ant-col-pull-4 {
        right: 16.66666667%;
      }
      .ant-col-offset-4 {
        margin-left: 16.66666667%;
      }
      .ant-col-order-4 {
        order: 4;
      }
      .ant-col-3 {
        display: block;
        flex: 0 0 12.5%;
        max-width: 12.5%;
      }
      .ant-col-push-3 {
        left: 12.5%;
      }
      .ant-col-pull-3 {
        right: 12.5%;
      }
      .ant-col-offset-3 {
        margin-left: 12.5%;
      }
      .ant-col-order-3 {
        order: 3;
      }
      .ant-col-2 {
        display: block;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
      }
      .ant-col-push-2 {
        left: 8.33333333%;
      }
      .ant-col-pull-2 {
        right: 8.33333333%;
      }
      .ant-col-offset-2 {
        margin-left: 8.33333333%;
      }
      .ant-col-order-2 {
        order: 2;
      }
      .ant-col-1 {
        display: block;
        flex: 0 0 4.16666667%;
        max-width: 4.16666667%;
      }
      .ant-col-push-1 {
        left: 4.16666667%;
      }
      .ant-col-pull-1 {
        right: 4.16666667%;
      }
      .ant-col-offset-1 {
        margin-left: 4.16666667%;
      }
      .ant-col-order-1 {
        order: 1;
      }
      .ant-col-0 {
        display: none;
      }
      .ant-col-push-0 {
        left: auto;
      }
      .ant-col-pull-0 {
        right: auto;
      }
      .ant-col-push-0 {
        left: auto;
      }
      .ant-col-pull-0 {
        right: auto;
      }
      .ant-col-offset-0 {
        margin-left: 0;
      }
      .ant-col-order-0 {
        order: 0;
      }
      .ant-col-push-0.ant-col-rtl {
        right: auto;
      }
      .ant-col-pull-0.ant-col-rtl {
        left: auto;
      }
      .ant-col-push-0.ant-col-rtl {
        right: auto;
      }
      .ant-col-pull-0.ant-col-rtl {
        left: auto;
      }
      .ant-col-offset-0.ant-col-rtl {
        margin-right: 0;
      }
      .ant-col-push-1.ant-col-rtl {
        right: 4.16666667%;
        left: auto;
      }
      .ant-col-pull-1.ant-col-rtl {
        right: auto;
        left: 4.16666667%;
      }
      .ant-col-offset-1.ant-col-rtl {
        margin-right: 4.16666667%;
        margin-left: 0;
      }
      .ant-col-push-2.ant-col-rtl {
        right: 8.33333333%;
        left: auto;
      }
      .ant-col-pull-2.ant-col-rtl {
        right: auto;
        left: 8.33333333%;
      }
      .ant-col-offset-2.ant-col-rtl {
        margin-right: 8.33333333%;
        margin-left: 0;
      }
      .ant-col-push-3.ant-col-rtl {
        right: 12.5%;
        left: auto;
      }
      .ant-col-pull-3.ant-col-rtl {
        right: auto;
        left: 12.5%;
      }
      .ant-col-offset-3.ant-col-rtl {
        margin-right: 12.5%;
        margin-left: 0;
      }
      .ant-col-push-4.ant-col-rtl {
        right: 16.66666667%;
        left: auto;
      }
      .ant-col-pull-4.ant-col-rtl {
        right: auto;
        left: 16.66666667%;
      }
      .ant-col-offset-4.ant-col-rtl {
        margin-right: 16.66666667%;
        margin-left: 0;
      }
      .ant-col-push-5.ant-col-rtl {
        right: 20.83333333%;
        left: auto;
      }
      .ant-col-pull-5.ant-col-rtl {
        right: auto;
        left: 20.83333333%;
      }
      .ant-col-offset-5.ant-col-rtl {
        margin-right: 20.83333333%;
        margin-left: 0;
      }
      .ant-col-push-6.ant-col-rtl {
        right: 25%;
        left: auto;
      }
      .ant-col-pull-6.ant-col-rtl {
        right: auto;
        left: 25%;
      }
      .ant-col-offset-6.ant-col-rtl {
        margin-right: 25%;
        margin-left: 0;
      }
      .ant-col-push-7.ant-col-rtl {
        right: 29.16666667%;
        left: auto;
      }
      .ant-col-pull-7.ant-col-rtl {
        right: auto;
        left: 29.16666667%;
      }
      .ant-col-offset-7.ant-col-rtl {
        margin-right: 29.16666667%;
        margin-left: 0;
      }
      .ant-col-push-8.ant-col-rtl {
        right: 33.33333333%;
        left: auto;
      }
      .ant-col-pull-8.ant-col-rtl {
        right: auto;
        left: 33.33333333%;
      }
      .ant-col-offset-8.ant-col-rtl {
        margin-right: 33.33333333%;
        margin-left: 0;
      }
      .ant-col-push-9.ant-col-rtl {
        right: 37.5%;
        left: auto;
      }
      .ant-col-pull-9.ant-col-rtl {
        right: auto;
        left: 37.5%;
      }
      .ant-col-offset-9.ant-col-rtl {
        margin-right: 37.5%;
        margin-left: 0;
      }
      .ant-col-push-10.ant-col-rtl {
        right: 41.66666667%;
        left: auto;
      }
      .ant-col-pull-10.ant-col-rtl {
        right: auto;
        left: 41.66666667%;
      }
      .ant-col-offset-10.ant-col-rtl {
        margin-right: 41.66666667%;
        margin-left: 0;
      }
      .ant-col-push-11.ant-col-rtl {
        right: 45.83333333%;
        left: auto;
      }
      .ant-col-pull-11.ant-col-rtl {
        right: auto;
        left: 45.83333333%;
      }
      .ant-col-offset-11.ant-col-rtl {
        margin-right: 45.83333333%;
        margin-left: 0;
      }
      .ant-col-push-12.ant-col-rtl {
        right: 50%;
        left: auto;
      }
      .ant-col-pull-12.ant-col-rtl {
        right: auto;
        left: 50%;
      }
      .ant-col-offset-12.ant-col-rtl {
        margin-right: 50%;
        margin-left: 0;
      }
      .ant-col-push-13.ant-col-rtl {
        right: 54.16666667%;
        left: auto;
      }
      .ant-col-pull-13.ant-col-rtl {
        right: auto;
        left: 54.16666667%;
      }
      .ant-col-offset-13.ant-col-rtl {
        margin-right: 54.16666667%;
        margin-left: 0;
      }
      .ant-col-push-14.ant-col-rtl {
        right: 58.33333333%;
        left: auto;
      }
      .ant-col-pull-14.ant-col-rtl {
        right: auto;
        left: 58.33333333%;
      }
      .ant-col-offset-14.ant-col-rtl {
        margin-right: 58.33333333%;
        margin-left: 0;
      }
      .ant-col-push-15.ant-col-rtl {
        right: 62.5%;
        left: auto;
      }
      .ant-col-pull-15.ant-col-rtl {
        right: auto;
        left: 62.5%;
      }
      .ant-col-offset-15.ant-col-rtl {
        margin-right: 62.5%;
        margin-left: 0;
      }
      .ant-col-push-16.ant-col-rtl {
        right: 66.66666667%;
        left: auto;
      }
      .ant-col-pull-16.ant-col-rtl {
        right: auto;
        left: 66.66666667%;
      }
      .ant-col-offset-16.ant-col-rtl {
        margin-right: 66.66666667%;
        margin-left: 0;
      }
      .ant-col-push-17.ant-col-rtl {
        right: 70.83333333%;
        left: auto;
      }
      .ant-col-pull-17.ant-col-rtl {
        right: auto;
        left: 70.83333333%;
      }
      .ant-col-offset-17.ant-col-rtl {
        margin-right: 70.83333333%;
        margin-left: 0;
      }
      .ant-col-push-18.ant-col-rtl {
        right: 75%;
        left: auto;
      }
      .ant-col-pull-18.ant-col-rtl {
        right: auto;
        left: 75%;
      }
      .ant-col-offset-18.ant-col-rtl {
        margin-right: 75%;
        margin-left: 0;
      }
      .ant-col-push-19.ant-col-rtl {
        right: 79.16666667%;
        left: auto;
      }
      .ant-col-pull-19.ant-col-rtl {
        right: auto;
        left: 79.16666667%;
      }
      .ant-col-offset-19.ant-col-rtl {
        margin-right: 79.16666667%;
        margin-left: 0;
      }
      .ant-col-push-20.ant-col-rtl {
        right: 83.33333333%;
        left: auto;
      }
      .ant-col-pull-20.ant-col-rtl {
        right: auto;
        left: 83.33333333%;
      }
      .ant-col-offset-20.ant-col-rtl {
        margin-right: 83.33333333%;
        margin-left: 0;
      }
      .ant-col-push-21.ant-col-rtl {
        right: 87.5%;
        left: auto;
      }
      .ant-col-pull-21.ant-col-rtl {
        right: auto;
        left: 87.5%;
      }
      .ant-col-offset-21.ant-col-rtl {
        margin-right: 87.5%;
        margin-left: 0;
      }
      .ant-col-push-22.ant-col-rtl {
        right: 91.66666667%;
        left: auto;
      }
      .ant-col-pull-22.ant-col-rtl {
        right: auto;
        left: 91.66666667%;
      }
      .ant-col-offset-22.ant-col-rtl {
        margin-right: 91.66666667%;
        margin-left: 0;
      }
      .ant-col-push-23.ant-col-rtl {
        right: 95.83333333%;
        left: auto;
      }
      .ant-col-pull-23.ant-col-rtl {
        right: auto;
        left: 95.83333333%;
      }
      .ant-col-offset-23.ant-col-rtl {
        margin-right: 95.83333333%;
        margin-left: 0;
      }
      .ant-col-push-24.ant-col-rtl {
        right: 100%;
        left: auto;
      }
      .ant-col-pull-24.ant-col-rtl {
        right: auto;
        left: 100%;
      }
      .ant-col-offset-24.ant-col-rtl {
        margin-right: 100%;
        margin-left: 0;
      }
      .ant-col-xs-24 {
        display: block;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .ant-col-xs-push-24 {
        left: 100%;
      }
      .ant-col-xs-pull-24 {
        right: 100%;
      }
      .ant-col-xs-offset-24 {
        margin-left: 100%;
      }
      .ant-col-xs-order-24 {
        order: 24;
      }
      .ant-col-xs-23 {
        display: block;
        flex: 0 0 95.83333333%;
        max-width: 95.83333333%;
      }
      .ant-col-xs-push-23 {
        left: 95.83333333%;
      }
      .ant-col-xs-pull-23 {
        right: 95.83333333%;
      }
      .ant-col-xs-offset-23 {
        margin-left: 95.83333333%;
      }
      .ant-col-xs-order-23 {
        order: 23;
      }
      .ant-col-xs-22 {
        display: block;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
      }
      .ant-col-xs-push-22 {
        left: 91.66666667%;
      }
      .ant-col-xs-pull-22 {
        right: 91.66666667%;
      }
      .ant-col-xs-offset-22 {
        margin-left: 91.66666667%;
      }
      .ant-col-xs-order-22 {
        order: 22;
      }
      .ant-col-xs-21 {
        display: block;
        flex: 0 0 87.5%;
        max-width: 87.5%;
      }
      .ant-col-xs-push-21 {
        left: 87.5%;
      }
      .ant-col-xs-pull-21 {
        right: 87.5%;
      }
      .ant-col-xs-offset-21 {
        margin-left: 87.5%;
      }
      .ant-col-xs-order-21 {
        order: 21;
      }
      .ant-col-xs-20 {
        display: block;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
      }
      .ant-col-xs-push-20 {
        left: 83.33333333%;
      }
      .ant-col-xs-pull-20 {
        right: 83.33333333%;
      }
      .ant-col-xs-offset-20 {
        margin-left: 83.33333333%;
      }
      .ant-col-xs-order-20 {
        order: 20;
      }
      .ant-col-xs-19 {
        display: block;
        flex: 0 0 79.16666667%;
        max-width: 79.16666667%;
      }
      .ant-col-xs-push-19 {
        left: 79.16666667%;
      }
      .ant-col-xs-pull-19 {
        right: 79.16666667%;
      }
      .ant-col-xs-offset-19 {
        margin-left: 79.16666667%;
      }
      .ant-col-xs-order-19 {
        order: 19;
      }
      .ant-col-xs-18 {
        display: block;
        flex: 0 0 75%;
        max-width: 75%;
      }
      .ant-col-xs-push-18 {
        left: 75%;
      }
      .ant-col-xs-pull-18 {
        right: 75%;
      }
      .ant-col-xs-offset-18 {
        margin-left: 75%;
      }
      .ant-col-xs-order-18 {
        order: 18;
      }
      .ant-col-xs-17 {
        display: block;
        flex: 0 0 70.83333333%;
        max-width: 70.83333333%;
      }
      .ant-col-xs-push-17 {
        left: 70.83333333%;
      }
      .ant-col-xs-pull-17 {
        right: 70.83333333%;
      }
      .ant-col-xs-offset-17 {
        margin-left: 70.83333333%;
      }
      .ant-col-xs-order-17 {
        order: 17;
      }
      .ant-col-xs-16 {
        display: block;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
      }
      .ant-col-xs-push-16 {
        left: 66.66666667%;
      }
      .ant-col-xs-pull-16 {
        right: 66.66666667%;
      }
      .ant-col-xs-offset-16 {
        margin-left: 66.66666667%;
      }
      .ant-col-xs-order-16 {
        order: 16;
      }
      .ant-col-xs-15 {
        display: block;
        flex: 0 0 62.5%;
        max-width: 62.5%;
      }
      .ant-col-xs-push-15 {
        left: 62.5%;
      }
      .ant-col-xs-pull-15 {
        right: 62.5%;
      }
      .ant-col-xs-offset-15 {
        margin-left: 62.5%;
      }
      .ant-col-xs-order-15 {
        order: 15;
      }
      .ant-col-xs-14 {
        display: block;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
      }
      .ant-col-xs-push-14 {
        left: 58.33333333%;
      }
      .ant-col-xs-pull-14 {
        right: 58.33333333%;
      }
      .ant-col-xs-offset-14 {
        margin-left: 58.33333333%;
      }
      .ant-col-xs-order-14 {
        order: 14;
      }
      .ant-col-xs-13 {
        display: block;
        flex: 0 0 54.16666667%;
        max-width: 54.16666667%;
      }
      .ant-col-xs-push-13 {
        left: 54.16666667%;
      }
      .ant-col-xs-pull-13 {
        right: 54.16666667%;
      }
      .ant-col-xs-offset-13 {
        margin-left: 54.16666667%;
      }
      .ant-col-xs-order-13 {
        order: 13;
      }
      .ant-col-xs-12 {
        display: block;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .ant-col-xs-push-12 {
        left: 50%;
      }
      .ant-col-xs-pull-12 {
        right: 50%;
      }
      .ant-col-xs-offset-12 {
        margin-left: 50%;
      }
      .ant-col-xs-order-12 {
        order: 12;
      }
      .ant-col-xs-11 {
        display: block;
        flex: 0 0 45.83333333%;
        max-width: 45.83333333%;
      }
      .ant-col-xs-push-11 {
        left: 45.83333333%;
      }
      .ant-col-xs-pull-11 {
        right: 45.83333333%;
      }
      .ant-col-xs-offset-11 {
        margin-left: 45.83333333%;
      }
      .ant-col-xs-order-11 {
        order: 11;
      }
      .ant-col-xs-10 {
        display: block;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
      }
      .ant-col-xs-push-10 {
        left: 41.66666667%;
      }
      .ant-col-xs-pull-10 {
        right: 41.66666667%;
      }
      .ant-col-xs-offset-10 {
        margin-left: 41.66666667%;
      }
      .ant-col-xs-order-10 {
        order: 10;
      }
      .ant-col-xs-9 {
        display: block;
        flex: 0 0 37.5%;
        max-width: 37.5%;
      }
      .ant-col-xs-push-9 {
        left: 37.5%;
      }
      .ant-col-xs-pull-9 {
        right: 37.5%;
      }
      .ant-col-xs-offset-9 {
        margin-left: 37.5%;
      }
      .ant-col-xs-order-9 {
        order: 9;
      }
      .ant-col-xs-8 {
        display: block;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
      }
      .ant-col-xs-push-8 {
        left: 33.33333333%;
      }
      .ant-col-xs-pull-8 {
        right: 33.33333333%;
      }
      .ant-col-xs-offset-8 {
        margin-left: 33.33333333%;
      }
      .ant-col-xs-order-8 {
        order: 8;
      }
      .ant-col-xs-7 {
        display: block;
        flex: 0 0 29.16666667%;
        max-width: 29.16666667%;
      }
      .ant-col-xs-push-7 {
        left: 29.16666667%;
      }
      .ant-col-xs-pull-7 {
        right: 29.16666667%;
      }
      .ant-col-xs-offset-7 {
        margin-left: 29.16666667%;
      }
      .ant-col-xs-order-7 {
        order: 7;
      }
      .ant-col-xs-6 {
        display: block;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .ant-col-xs-push-6 {
        left: 25%;
      }
      .ant-col-xs-pull-6 {
        right: 25%;
      }
      .ant-col-xs-offset-6 {
        margin-left: 25%;
      }
      .ant-col-xs-order-6 {
        order: 6;
      }
      .ant-col-xs-5 {
        display: block;
        flex: 0 0 20.83333333%;
        max-width: 20.83333333%;
      }
      .ant-col-xs-push-5 {
        left: 20.83333333%;
      }
      .ant-col-xs-pull-5 {
        right: 20.83333333%;
      }
      .ant-col-xs-offset-5 {
        margin-left: 20.83333333%;
      }
      .ant-col-xs-order-5 {
        order: 5;
      }
      .ant-col-xs-4 {
        display: block;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
      }
      .ant-col-xs-push-4 {
        left: 16.66666667%;
      }
      .ant-col-xs-pull-4 {
        right: 16.66666667%;
      }
      .ant-col-xs-offset-4 {
        margin-left: 16.66666667%;
      }
      .ant-col-xs-order-4 {
        order: 4;
      }
      .ant-col-xs-3 {
        display: block;
        flex: 0 0 12.5%;
        max-width: 12.5%;
      }
      .ant-col-xs-push-3 {
        left: 12.5%;
      }
      .ant-col-xs-pull-3 {
        right: 12.5%;
      }
      .ant-col-xs-offset-3 {
        margin-left: 12.5%;
      }
      .ant-col-xs-order-3 {
        order: 3;
      }
      .ant-col-xs-2 {
        display: block;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
      }
      .ant-col-xs-push-2 {
        left: 8.33333333%;
      }
      .ant-col-xs-pull-2 {
        right: 8.33333333%;
      }
      .ant-col-xs-offset-2 {
        margin-left: 8.33333333%;
      }
      .ant-col-xs-order-2 {
        order: 2;
      }
      .ant-col-xs-1 {
        display: block;
        flex: 0 0 4.16666667%;
        max-width: 4.16666667%;
      }
      .ant-col-xs-push-1 {
        left: 4.16666667%;
      }
      .ant-col-xs-pull-1 {
        right: 4.16666667%;
      }
      .ant-col-xs-offset-1 {
        margin-left: 4.16666667%;
      }
      .ant-col-xs-order-1 {
        order: 1;
      }
      .ant-col-xs-0 {
        display: none;
      }
      .ant-col-push-0 {
        left: auto;
      }
      .ant-col-pull-0 {
        right: auto;
      }
      .ant-col-xs-push-0 {
        left: auto;
      }
      .ant-col-xs-pull-0 {
        right: auto;
      }
      .ant-col-xs-offset-0 {
        margin-left: 0;
      }
      .ant-col-xs-order-0 {
        order: 0;
      }
      .ant-col-push-0.ant-col-rtl {
        right: auto;
      }
      .ant-col-pull-0.ant-col-rtl {
        left: auto;
      }
      .ant-col-xs-push-0.ant-col-rtl {
        right: auto;
      }
      .ant-col-xs-pull-0.ant-col-rtl {
        left: auto;
      }
      .ant-col-xs-offset-0.ant-col-rtl {
        margin-right: 0;
      }
      .ant-col-xs-push-1.ant-col-rtl {
        right: 4.16666667%;
        left: auto;
      }
      .ant-col-xs-pull-1.ant-col-rtl {
        right: auto;
        left: 4.16666667%;
      }
      .ant-col-xs-offset-1.ant-col-rtl {
        margin-right: 4.16666667%;
        margin-left: 0;
      }
      .ant-col-xs-push-2.ant-col-rtl {
        right: 8.33333333%;
        left: auto;
      }
      .ant-col-xs-pull-2.ant-col-rtl {
        right: auto;
        left: 8.33333333%;
      }
      .ant-col-xs-offset-2.ant-col-rtl {
        margin-right: 8.33333333%;
        margin-left: 0;
      }
      .ant-col-xs-push-3.ant-col-rtl {
        right: 12.5%;
        left: auto;
      }
      .ant-col-xs-pull-3.ant-col-rtl {
        right: auto;
        left: 12.5%;
      }
      .ant-col-xs-offset-3.ant-col-rtl {
        margin-right: 12.5%;
        margin-left: 0;
      }
      .ant-col-xs-push-4.ant-col-rtl {
        right: 16.66666667%;
        left: auto;
      }
      .ant-col-xs-pull-4.ant-col-rtl {
        right: auto;
        left: 16.66666667%;
      }
      .ant-col-xs-offset-4.ant-col-rtl {
        margin-right: 16.66666667%;
        margin-left: 0;
      }
      .ant-col-xs-push-5.ant-col-rtl {
        right: 20.83333333%;
        left: auto;
      }
      .ant-col-xs-pull-5.ant-col-rtl {
        right: auto;
        left: 20.83333333%;
      }
      .ant-col-xs-offset-5.ant-col-rtl {
        margin-right: 20.83333333%;
        margin-left: 0;
      }
      .ant-col-xs-push-6.ant-col-rtl {
        right: 25%;
        left: auto;
      }
      .ant-col-xs-pull-6.ant-col-rtl {
        right: auto;
        left: 25%;
      }
      .ant-col-xs-offset-6.ant-col-rtl {
        margin-right: 25%;
        margin-left: 0;
      }
      .ant-col-xs-push-7.ant-col-rtl {
        right: 29.16666667%;
        left: auto;
      }
      .ant-col-xs-pull-7.ant-col-rtl {
        right: auto;
        left: 29.16666667%;
      }
      .ant-col-xs-offset-7.ant-col-rtl {
        margin-right: 29.16666667%;
        margin-left: 0;
      }
      .ant-col-xs-push-8.ant-col-rtl {
        right: 33.33333333%;
        left: auto;
      }
      .ant-col-xs-pull-8.ant-col-rtl {
        right: auto;
        left: 33.33333333%;
      }
      .ant-col-xs-offset-8.ant-col-rtl {
        margin-right: 33.33333333%;
        margin-left: 0;
      }
      .ant-col-xs-push-9.ant-col-rtl {
        right: 37.5%;
        left: auto;
      }
      .ant-col-xs-pull-9.ant-col-rtl {
        right: auto;
        left: 37.5%;
      }
      .ant-col-xs-offset-9.ant-col-rtl {
        margin-right: 37.5%;
        margin-left: 0;
      }
      .ant-col-xs-push-10.ant-col-rtl {
        right: 41.66666667%;
        left: auto;
      }
      .ant-col-xs-pull-10.ant-col-rtl {
        right: auto;
        left: 41.66666667%;
      }
      .ant-col-xs-offset-10.ant-col-rtl {
        margin-right: 41.66666667%;
        margin-left: 0;
      }
      .ant-col-xs-push-11.ant-col-rtl {
        right: 45.83333333%;
        left: auto;
      }
      .ant-col-xs-pull-11.ant-col-rtl {
        right: auto;
        left: 45.83333333%;
      }
      .ant-col-xs-offset-11.ant-col-rtl {
        margin-right: 45.83333333%;
        margin-left: 0;
      }
      .ant-col-xs-push-12.ant-col-rtl {
        right: 50%;
        left: auto;
      }
      .ant-col-xs-pull-12.ant-col-rtl {
        right: auto;
        left: 50%;
      }
      .ant-col-xs-offset-12.ant-col-rtl {
        margin-right: 50%;
        margin-left: 0;
      }
      .ant-col-xs-push-13.ant-col-rtl {
        right: 54.16666667%;
        left: auto;
      }
      .ant-col-xs-pull-13.ant-col-rtl {
        right: auto;
        left: 54.16666667%;
      }
      .ant-col-xs-offset-13.ant-col-rtl {
        margin-right: 54.16666667%;
        margin-left: 0;
      }
      .ant-col-xs-push-14.ant-col-rtl {
        right: 58.33333333%;
        left: auto;
      }
      .ant-col-xs-pull-14.ant-col-rtl {
        right: auto;
        left: 58.33333333%;
      }
      .ant-col-xs-offset-14.ant-col-rtl {
        margin-right: 58.33333333%;
        margin-left: 0;
      }
      .ant-col-xs-push-15.ant-col-rtl {
        right: 62.5%;
        left: auto;
      }
      .ant-col-xs-pull-15.ant-col-rtl {
        right: auto;
        left: 62.5%;
      }
      .ant-col-xs-offset-15.ant-col-rtl {
        margin-right: 62.5%;
        margin-left: 0;
      }
      .ant-col-xs-push-16.ant-col-rtl {
        right: 66.66666667%;
        left: auto;
      }
      .ant-col-xs-pull-16.ant-col-rtl {
        right: auto;
        left: 66.66666667%;
      }
      .ant-col-xs-offset-16.ant-col-rtl {
        margin-right: 66.66666667%;
        margin-left: 0;
      }
      .ant-col-xs-push-17.ant-col-rtl {
        right: 70.83333333%;
        left: auto;
      }
      .ant-col-xs-pull-17.ant-col-rtl {
        right: auto;
        left: 70.83333333%;
      }
      .ant-col-xs-offset-17.ant-col-rtl {
        margin-right: 70.83333333%;
        margin-left: 0;
      }
      .ant-col-xs-push-18.ant-col-rtl {
        right: 75%;
        left: auto;
      }
      .ant-col-xs-pull-18.ant-col-rtl {
        right: auto;
        left: 75%;
      }
      .ant-col-xs-offset-18.ant-col-rtl {
        margin-right: 75%;
        margin-left: 0;
      }
      .ant-col-xs-push-19.ant-col-rtl {
        right: 79.16666667%;
        left: auto;
      }
      .ant-col-xs-pull-19.ant-col-rtl {
        right: auto;
        left: 79.16666667%;
      }
      .ant-col-xs-offset-19.ant-col-rtl {
        margin-right: 79.16666667%;
        margin-left: 0;
      }
      .ant-col-xs-push-20.ant-col-rtl {
        right: 83.33333333%;
        left: auto;
      }
      .ant-col-xs-pull-20.ant-col-rtl {
        right: auto;
        left: 83.33333333%;
      }
      .ant-col-xs-offset-20.ant-col-rtl {
        margin-right: 83.33333333%;
        margin-left: 0;
      }
      .ant-col-xs-push-21.ant-col-rtl {
        right: 87.5%;
        left: auto;
      }
      .ant-col-xs-pull-21.ant-col-rtl {
        right: auto;
        left: 87.5%;
      }
      .ant-col-xs-offset-21.ant-col-rtl {
        margin-right: 87.5%;
        margin-left: 0;
      }
      .ant-col-xs-push-22.ant-col-rtl {
        right: 91.66666667%;
        left: auto;
      }
      .ant-col-xs-pull-22.ant-col-rtl {
        right: auto;
        left: 91.66666667%;
      }
      .ant-col-xs-offset-22.ant-col-rtl {
        margin-right: 91.66666667%;
        margin-left: 0;
      }
      .ant-col-xs-push-23.ant-col-rtl {
        right: 95.83333333%;
        left: auto;
      }
      .ant-col-xs-pull-23.ant-col-rtl {
        right: auto;
        left: 95.83333333%;
      }
      .ant-col-xs-offset-23.ant-col-rtl {
        margin-right: 95.83333333%;
        margin-left: 0;
      }
      .ant-col-xs-push-24.ant-col-rtl {
        right: 100%;
        left: auto;
      }
      .ant-col-xs-pull-24.ant-col-rtl {
        right: auto;
        left: 100%;
      }
      .ant-col-xs-offset-24.ant-col-rtl {
        margin-right: 100%;
        margin-left: 0;
      }
      @media (min-width: 576px) {
        .ant-col-sm-24 {
          display: block;
          flex: 0 0 100%;
          max-width: 100%;
        }
        .ant-col-sm-push-24 {
          left: 100%;
        }
        .ant-col-sm-pull-24 {
          right: 100%;
        }
        .ant-col-sm-offset-24 {
          margin-left: 100%;
        }
        .ant-col-sm-order-24 {
          order: 24;
        }
        .ant-col-sm-23 {
          display: block;
          flex: 0 0 95.83333333%;
          max-width: 95.83333333%;
        }
        .ant-col-sm-push-23 {
          left: 95.83333333%;
        }
        .ant-col-sm-pull-23 {
          right: 95.83333333%;
        }
        .ant-col-sm-offset-23 {
          margin-left: 95.83333333%;
        }
        .ant-col-sm-order-23 {
          order: 23;
        }
        .ant-col-sm-22 {
          display: block;
          flex: 0 0 91.66666667%;
          max-width: 91.66666667%;
        }
        .ant-col-sm-push-22 {
          left: 91.66666667%;
        }
        .ant-col-sm-pull-22 {
          right: 91.66666667%;
        }
        .ant-col-sm-offset-22 {
          margin-left: 91.66666667%;
        }
        .ant-col-sm-order-22 {
          order: 22;
        }
        .ant-col-sm-21 {
          display: block;
          flex: 0 0 87.5%;
          max-width: 87.5%;
        }
        .ant-col-sm-push-21 {
          left: 87.5%;
        }
        .ant-col-sm-pull-21 {
          right: 87.5%;
        }
        .ant-col-sm-offset-21 {
          margin-left: 87.5%;
        }
        .ant-col-sm-order-21 {
          order: 21;
        }
        .ant-col-sm-20 {
          display: block;
          flex: 0 0 83.33333333%;
          max-width: 83.33333333%;
        }
        .ant-col-sm-push-20 {
          left: 83.33333333%;
        }
        .ant-col-sm-pull-20 {
          right: 83.33333333%;
        }
        .ant-col-sm-offset-20 {
          margin-left: 83.33333333%;
        }
        .ant-col-sm-order-20 {
          order: 20;
        }
        .ant-col-sm-19 {
          display: block;
          flex: 0 0 79.16666667%;
          max-width: 79.16666667%;
        }
        .ant-col-sm-push-19 {
          left: 79.16666667%;
        }
        .ant-col-sm-pull-19 {
          right: 79.16666667%;
        }
        .ant-col-sm-offset-19 {
          margin-left: 79.16666667%;
        }
        .ant-col-sm-order-19 {
          order: 19;
        }
        .ant-col-sm-18 {
          display: block;
          flex: 0 0 75%;
          max-width: 75%;
        }
        .ant-col-sm-push-18 {
          left: 75%;
        }
        .ant-col-sm-pull-18 {
          right: 75%;
        }
        .ant-col-sm-offset-18 {
          margin-left: 75%;
        }
        .ant-col-sm-order-18 {
          order: 18;
        }
        .ant-col-sm-17 {
          display: block;
          flex: 0 0 70.83333333%;
          max-width: 70.83333333%;
        }
        .ant-col-sm-push-17 {
          left: 70.83333333%;
        }
        .ant-col-sm-pull-17 {
          right: 70.83333333%;
        }
        .ant-col-sm-offset-17 {
          margin-left: 70.83333333%;
        }
        .ant-col-sm-order-17 {
          order: 17;
        }
        .ant-col-sm-16 {
          display: block;
          flex: 0 0 66.66666667%;
          max-width: 66.66666667%;
        }
        .ant-col-sm-push-16 {
          left: 66.66666667%;
        }
        .ant-col-sm-pull-16 {
          right: 66.66666667%;
        }
        .ant-col-sm-offset-16 {
          margin-left: 66.66666667%;
        }
        .ant-col-sm-order-16 {
          order: 16;
        }
        .ant-col-sm-15 {
          display: block;
          flex: 0 0 62.5%;
          max-width: 62.5%;
        }
        .ant-col-sm-push-15 {
          left: 62.5%;
        }
        .ant-col-sm-pull-15 {
          right: 62.5%;
        }
        .ant-col-sm-offset-15 {
          margin-left: 62.5%;
        }
        .ant-col-sm-order-15 {
          order: 15;
        }
        .ant-col-sm-14 {
          display: block;
          flex: 0 0 58.33333333%;
          max-width: 58.33333333%;
        }
        .ant-col-sm-push-14 {
          left: 58.33333333%;
        }
        .ant-col-sm-pull-14 {
          right: 58.33333333%;
        }
        .ant-col-sm-offset-14 {
          margin-left: 58.33333333%;
        }
        .ant-col-sm-order-14 {
          order: 14;
        }
        .ant-col-sm-13 {
          display: block;
          flex: 0 0 54.16666667%;
          max-width: 54.16666667%;
        }
        .ant-col-sm-push-13 {
          left: 54.16666667%;
        }
        .ant-col-sm-pull-13 {
          right: 54.16666667%;
        }
        .ant-col-sm-offset-13 {
          margin-left: 54.16666667%;
        }
        .ant-col-sm-order-13 {
          order: 13;
        }
        .ant-col-sm-12 {
          display: block;
          flex: 0 0 50%;
          max-width: 50%;
        }
        .ant-col-sm-push-12 {
          left: 50%;
        }
        .ant-col-sm-pull-12 {
          right: 50%;
        }
        .ant-col-sm-offset-12 {
          margin-left: 50%;
        }
        .ant-col-sm-order-12 {
          order: 12;
        }
        .ant-col-sm-11 {
          display: block;
          flex: 0 0 45.83333333%;
          max-width: 45.83333333%;
        }
        .ant-col-sm-push-11 {
          left: 45.83333333%;
        }
        .ant-col-sm-pull-11 {
          right: 45.83333333%;
        }
        .ant-col-sm-offset-11 {
          margin-left: 45.83333333%;
        }
        .ant-col-sm-order-11 {
          order: 11;
        }
        .ant-col-sm-10 {
          display: block;
          flex: 0 0 41.66666667%;
          max-width: 41.66666667%;
        }
        .ant-col-sm-push-10 {
          left: 41.66666667%;
        }
        .ant-col-sm-pull-10 {
          right: 41.66666667%;
        }
        .ant-col-sm-offset-10 {
          margin-left: 41.66666667%;
        }
        .ant-col-sm-order-10 {
          order: 10;
        }
        .ant-col-sm-9 {
          display: block;
          flex: 0 0 37.5%;
          max-width: 37.5%;
        }
        .ant-col-sm-push-9 {
          left: 37.5%;
        }
        .ant-col-sm-pull-9 {
          right: 37.5%;
        }
        .ant-col-sm-offset-9 {
          margin-left: 37.5%;
        }
        .ant-col-sm-order-9 {
          order: 9;
        }
        .ant-col-sm-8 {
          display: block;
          flex: 0 0 33.33333333%;
          max-width: 33.33333333%;
        }
        .ant-col-sm-push-8 {
          left: 33.33333333%;
        }
        .ant-col-sm-pull-8 {
          right: 33.33333333%;
        }
        .ant-col-sm-offset-8 {
          margin-left: 33.33333333%;
        }
        .ant-col-sm-order-8 {
          order: 8;
        }
        .ant-col-sm-7 {
          display: block;
          flex: 0 0 29.16666667%;
          max-width: 29.16666667%;
        }
        .ant-col-sm-push-7 {
          left: 29.16666667%;
        }
        .ant-col-sm-pull-7 {
          right: 29.16666667%;
        }
        .ant-col-sm-offset-7 {
          margin-left: 29.16666667%;
        }
        .ant-col-sm-order-7 {
          order: 7;
        }
        .ant-col-sm-6 {
          display: block;
          flex: 0 0 25%;
          max-width: 25%;
        }
        .ant-col-sm-push-6 {
          left: 25%;
        }
        .ant-col-sm-pull-6 {
          right: 25%;
        }
        .ant-col-sm-offset-6 {
          margin-left: 25%;
        }
        .ant-col-sm-order-6 {
          order: 6;
        }
        .ant-col-sm-5 {
          display: block;
          flex: 0 0 20.83333333%;
          max-width: 20.83333333%;
        }
        .ant-col-sm-push-5 {
          left: 20.83333333%;
        }
        .ant-col-sm-pull-5 {
          right: 20.83333333%;
        }
        .ant-col-sm-offset-5 {
          margin-left: 20.83333333%;
        }
        .ant-col-sm-order-5 {
          order: 5;
        }
        .ant-col-sm-4 {
          display: block;
          flex: 0 0 16.66666667%;
          max-width: 16.66666667%;
        }
        .ant-col-sm-push-4 {
          left: 16.66666667%;
        }
        .ant-col-sm-pull-4 {
          right: 16.66666667%;
        }
        .ant-col-sm-offset-4 {
          margin-left: 16.66666667%;
        }
        .ant-col-sm-order-4 {
          order: 4;
        }
        .ant-col-sm-3 {
          display: block;
          flex: 0 0 12.5%;
          max-width: 12.5%;
        }
        .ant-col-sm-push-3 {
          left: 12.5%;
        }
        .ant-col-sm-pull-3 {
          right: 12.5%;
        }
        .ant-col-sm-offset-3 {
          margin-left: 12.5%;
        }
        .ant-col-sm-order-3 {
          order: 3;
        }
        .ant-col-sm-2 {
          display: block;
          flex: 0 0 8.33333333%;
          max-width: 8.33333333%;
        }
        .ant-col-sm-push-2 {
          left: 8.33333333%;
        }
        .ant-col-sm-pull-2 {
          right: 8.33333333%;
        }
        .ant-col-sm-offset-2 {
          margin-left: 8.33333333%;
        }
        .ant-col-sm-order-2 {
          order: 2;
        }
        .ant-col-sm-1 {
          display: block;
          flex: 0 0 4.16666667%;
          max-width: 4.16666667%;
        }
        .ant-col-sm-push-1 {
          left: 4.16666667%;
        }
        .ant-col-sm-pull-1 {
          right: 4.16666667%;
        }
        .ant-col-sm-offset-1 {
          margin-left: 4.16666667%;
        }
        .ant-col-sm-order-1 {
          order: 1;
        }
        .ant-col-sm-0 {
          display: none;
        }
        .ant-col-push-0 {
          left: auto;
        }
        .ant-col-pull-0 {
          right: auto;
        }
        .ant-col-sm-push-0 {
          left: auto;
        }
        .ant-col-sm-pull-0 {
          right: auto;
        }
        .ant-col-sm-offset-0 {
          margin-left: 0;
        }
        .ant-col-sm-order-0 {
          order: 0;
        }
        .ant-col-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-sm-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-sm-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-sm-offset-0.ant-col-rtl {
          margin-right: 0;
        }
        .ant-col-sm-push-1.ant-col-rtl {
          right: 4.16666667%;
          left: auto;
        }
        .ant-col-sm-pull-1.ant-col-rtl {
          right: auto;
          left: 4.16666667%;
        }
        .ant-col-sm-offset-1.ant-col-rtl {
          margin-right: 4.16666667%;
          margin-left: 0;
        }
        .ant-col-sm-push-2.ant-col-rtl {
          right: 8.33333333%;
          left: auto;
        }
        .ant-col-sm-pull-2.ant-col-rtl {
          right: auto;
          left: 8.33333333%;
        }
        .ant-col-sm-offset-2.ant-col-rtl {
          margin-right: 8.33333333%;
          margin-left: 0;
        }
        .ant-col-sm-push-3.ant-col-rtl {
          right: 12.5%;
          left: auto;
        }
        .ant-col-sm-pull-3.ant-col-rtl {
          right: auto;
          left: 12.5%;
        }
        .ant-col-sm-offset-3.ant-col-rtl {
          margin-right: 12.5%;
          margin-left: 0;
        }
        .ant-col-sm-push-4.ant-col-rtl {
          right: 16.66666667%;
          left: auto;
        }
        .ant-col-sm-pull-4.ant-col-rtl {
          right: auto;
          left: 16.66666667%;
        }
        .ant-col-sm-offset-4.ant-col-rtl {
          margin-right: 16.66666667%;
          margin-left: 0;
        }
        .ant-col-sm-push-5.ant-col-rtl {
          right: 20.83333333%;
          left: auto;
        }
        .ant-col-sm-pull-5.ant-col-rtl {
          right: auto;
          left: 20.83333333%;
        }
        .ant-col-sm-offset-5.ant-col-rtl {
          margin-right: 20.83333333%;
          margin-left: 0;
        }
        .ant-col-sm-push-6.ant-col-rtl {
          right: 25%;
          left: auto;
        }
        .ant-col-sm-pull-6.ant-col-rtl {
          right: auto;
          left: 25%;
        }
        .ant-col-sm-offset-6.ant-col-rtl {
          margin-right: 25%;
          margin-left: 0;
        }
        .ant-col-sm-push-7.ant-col-rtl {
          right: 29.16666667%;
          left: auto;
        }
        .ant-col-sm-pull-7.ant-col-rtl {
          right: auto;
          left: 29.16666667%;
        }
        .ant-col-sm-offset-7.ant-col-rtl {
          margin-right: 29.16666667%;
          margin-left: 0;
        }
        .ant-col-sm-push-8.ant-col-rtl {
          right: 33.33333333%;
          left: auto;
        }
        .ant-col-sm-pull-8.ant-col-rtl {
          right: auto;
          left: 33.33333333%;
        }
        .ant-col-sm-offset-8.ant-col-rtl {
          margin-right: 33.33333333%;
          margin-left: 0;
        }
        .ant-col-sm-push-9.ant-col-rtl {
          right: 37.5%;
          left: auto;
        }
        .ant-col-sm-pull-9.ant-col-rtl {
          right: auto;
          left: 37.5%;
        }
        .ant-col-sm-offset-9.ant-col-rtl {
          margin-right: 37.5%;
          margin-left: 0;
        }
        .ant-col-sm-push-10.ant-col-rtl {
          right: 41.66666667%;
          left: auto;
        }
        .ant-col-sm-pull-10.ant-col-rtl {
          right: auto;
          left: 41.66666667%;
        }
        .ant-col-sm-offset-10.ant-col-rtl {
          margin-right: 41.66666667%;
          margin-left: 0;
        }
        .ant-col-sm-push-11.ant-col-rtl {
          right: 45.83333333%;
          left: auto;
        }
        .ant-col-sm-pull-11.ant-col-rtl {
          right: auto;
          left: 45.83333333%;
        }
        .ant-col-sm-offset-11.ant-col-rtl {
          margin-right: 45.83333333%;
          margin-left: 0;
        }
        .ant-col-sm-push-12.ant-col-rtl {
          right: 50%;
          left: auto;
        }
        .ant-col-sm-pull-12.ant-col-rtl {
          right: auto;
          left: 50%;
        }
        .ant-col-sm-offset-12.ant-col-rtl {
          margin-right: 50%;
          margin-left: 0;
        }
        .ant-col-sm-push-13.ant-col-rtl {
          right: 54.16666667%;
          left: auto;
        }
        .ant-col-sm-pull-13.ant-col-rtl {
          right: auto;
          left: 54.16666667%;
        }
        .ant-col-sm-offset-13.ant-col-rtl {
          margin-right: 54.16666667%;
          margin-left: 0;
        }
        .ant-col-sm-push-14.ant-col-rtl {
          right: 58.33333333%;
          left: auto;
        }
        .ant-col-sm-pull-14.ant-col-rtl {
          right: auto;
          left: 58.33333333%;
        }
        .ant-col-sm-offset-14.ant-col-rtl {
          margin-right: 58.33333333%;
          margin-left: 0;
        }
        .ant-col-sm-push-15.ant-col-rtl {
          right: 62.5%;
          left: auto;
        }
        .ant-col-sm-pull-15.ant-col-rtl {
          right: auto;
          left: 62.5%;
        }
        .ant-col-sm-offset-15.ant-col-rtl {
          margin-right: 62.5%;
          margin-left: 0;
        }
        .ant-col-sm-push-16.ant-col-rtl {
          right: 66.66666667%;
          left: auto;
        }
        .ant-col-sm-pull-16.ant-col-rtl {
          right: auto;
          left: 66.66666667%;
        }
        .ant-col-sm-offset-16.ant-col-rtl {
          margin-right: 66.66666667%;
          margin-left: 0;
        }
        .ant-col-sm-push-17.ant-col-rtl {
          right: 70.83333333%;
          left: auto;
        }
        .ant-col-sm-pull-17.ant-col-rtl {
          right: auto;
          left: 70.83333333%;
        }
        .ant-col-sm-offset-17.ant-col-rtl {
          margin-right: 70.83333333%;
          margin-left: 0;
        }
        .ant-col-sm-push-18.ant-col-rtl {
          right: 75%;
          left: auto;
        }
        .ant-col-sm-pull-18.ant-col-rtl {
          right: auto;
          left: 75%;
        }
        .ant-col-sm-offset-18.ant-col-rtl {
          margin-right: 75%;
          margin-left: 0;
        }
        .ant-col-sm-push-19.ant-col-rtl {
          right: 79.16666667%;
          left: auto;
        }
        .ant-col-sm-pull-19.ant-col-rtl {
          right: auto;
          left: 79.16666667%;
        }
        .ant-col-sm-offset-19.ant-col-rtl {
          margin-right: 79.16666667%;
          margin-left: 0;
        }
        .ant-col-sm-push-20.ant-col-rtl {
          right: 83.33333333%;
          left: auto;
        }
        .ant-col-sm-pull-20.ant-col-rtl {
          right: auto;
          left: 83.33333333%;
        }
        .ant-col-sm-offset-20.ant-col-rtl {
          margin-right: 83.33333333%;
          margin-left: 0;
        }
        .ant-col-sm-push-21.ant-col-rtl {
          right: 87.5%;
          left: auto;
        }
        .ant-col-sm-pull-21.ant-col-rtl {
          right: auto;
          left: 87.5%;
        }
        .ant-col-sm-offset-21.ant-col-rtl {
          margin-right: 87.5%;
          margin-left: 0;
        }
        .ant-col-sm-push-22.ant-col-rtl {
          right: 91.66666667%;
          left: auto;
        }
        .ant-col-sm-pull-22.ant-col-rtl {
          right: auto;
          left: 91.66666667%;
        }
        .ant-col-sm-offset-22.ant-col-rtl {
          margin-right: 91.66666667%;
          margin-left: 0;
        }
        .ant-col-sm-push-23.ant-col-rtl {
          right: 95.83333333%;
          left: auto;
        }
        .ant-col-sm-pull-23.ant-col-rtl {
          right: auto;
          left: 95.83333333%;
        }
        .ant-col-sm-offset-23.ant-col-rtl {
          margin-right: 95.83333333%;
          margin-left: 0;
        }
        .ant-col-sm-push-24.ant-col-rtl {
          right: 100%;
          left: auto;
        }
        .ant-col-sm-pull-24.ant-col-rtl {
          right: auto;
          left: 100%;
        }
        .ant-col-sm-offset-24.ant-col-rtl {
          margin-right: 100%;
          margin-left: 0;
        }
      }
      @media (min-width: 768px) {
        .ant-col-md-24 {
          display: block;
          flex: 0 0 100%;
          max-width: 100%;
        }
        .ant-col-md-push-24 {
          left: 100%;
        }
        .ant-col-md-pull-24 {
          right: 100%;
        }
        .ant-col-md-offset-24 {
          margin-left: 100%;
        }
        .ant-col-md-order-24 {
          order: 24;
        }
        .ant-col-md-23 {
          display: block;
          flex: 0 0 95.83333333%;
          max-width: 95.83333333%;
        }
        .ant-col-md-push-23 {
          left: 95.83333333%;
        }
        .ant-col-md-pull-23 {
          right: 95.83333333%;
        }
        .ant-col-md-offset-23 {
          margin-left: 95.83333333%;
        }
        .ant-col-md-order-23 {
          order: 23;
        }
        .ant-col-md-22 {
          display: block;
          flex: 0 0 91.66666667%;
          max-width: 91.66666667%;
        }
        .ant-col-md-push-22 {
          left: 91.66666667%;
        }
        .ant-col-md-pull-22 {
          right: 91.66666667%;
        }
        .ant-col-md-offset-22 {
          margin-left: 91.66666667%;
        }
        .ant-col-md-order-22 {
          order: 22;
        }
        .ant-col-md-21 {
          display: block;
          flex: 0 0 87.5%;
          max-width: 87.5%;
        }
        .ant-col-md-push-21 {
          left: 87.5%;
        }
        .ant-col-md-pull-21 {
          right: 87.5%;
        }
        .ant-col-md-offset-21 {
          margin-left: 87.5%;
        }
        .ant-col-md-order-21 {
          order: 21;
        }
        .ant-col-md-20 {
          display: block;
          flex: 0 0 83.33333333%;
          max-width: 83.33333333%;
        }
        .ant-col-md-push-20 {
          left: 83.33333333%;
        }
        .ant-col-md-pull-20 {
          right: 83.33333333%;
        }
        .ant-col-md-offset-20 {
          margin-left: 83.33333333%;
        }
        .ant-col-md-order-20 {
          order: 20;
        }
        .ant-col-md-19 {
          display: block;
          flex: 0 0 79.16666667%;
          max-width: 79.16666667%;
        }
        .ant-col-md-push-19 {
          left: 79.16666667%;
        }
        .ant-col-md-pull-19 {
          right: 79.16666667%;
        }
        .ant-col-md-offset-19 {
          margin-left: 79.16666667%;
        }
        .ant-col-md-order-19 {
          order: 19;
        }
        .ant-col-md-18 {
          display: block;
          flex: 0 0 75%;
          max-width: 75%;
        }
        .ant-col-md-push-18 {
          left: 75%;
        }
        .ant-col-md-pull-18 {
          right: 75%;
        }
        .ant-col-md-offset-18 {
          margin-left: 75%;
        }
        .ant-col-md-order-18 {
          order: 18;
        }
        .ant-col-md-17 {
          display: block;
          flex: 0 0 70.83333333%;
          max-width: 70.83333333%;
        }
        .ant-col-md-push-17 {
          left: 70.83333333%;
        }
        .ant-col-md-pull-17 {
          right: 70.83333333%;
        }
        .ant-col-md-offset-17 {
          margin-left: 70.83333333%;
        }
        .ant-col-md-order-17 {
          order: 17;
        }
        .ant-col-md-16 {
          display: block;
          flex: 0 0 66.66666667%;
          max-width: 66.66666667%;
        }
        .ant-col-md-push-16 {
          left: 66.66666667%;
        }
        .ant-col-md-pull-16 {
          right: 66.66666667%;
        }
        .ant-col-md-offset-16 {
          margin-left: 66.66666667%;
        }
        .ant-col-md-order-16 {
          order: 16;
        }
        .ant-col-md-15 {
          display: block;
          flex: 0 0 62.5%;
          max-width: 62.5%;
        }
        .ant-col-md-push-15 {
          left: 62.5%;
        }
        .ant-col-md-pull-15 {
          right: 62.5%;
        }
        .ant-col-md-offset-15 {
          margin-left: 62.5%;
        }
        .ant-col-md-order-15 {
          order: 15;
        }
        .ant-col-md-14 {
          display: block;
          flex: 0 0 58.33333333%;
          max-width: 58.33333333%;
        }
        .ant-col-md-push-14 {
          left: 58.33333333%;
        }
        .ant-col-md-pull-14 {
          right: 58.33333333%;
        }
        .ant-col-md-offset-14 {
          margin-left: 58.33333333%;
        }
        .ant-col-md-order-14 {
          order: 14;
        }
        .ant-col-md-13 {
          display: block;
          flex: 0 0 54.16666667%;
          max-width: 54.16666667%;
        }
        .ant-col-md-push-13 {
          left: 54.16666667%;
        }
        .ant-col-md-pull-13 {
          right: 54.16666667%;
        }
        .ant-col-md-offset-13 {
          margin-left: 54.16666667%;
        }
        .ant-col-md-order-13 {
          order: 13;
        }
        .ant-col-md-12 {
          display: block;
          flex: 0 0 50%;
          max-width: 50%;
        }
        .ant-col-md-push-12 {
          left: 50%;
        }
        .ant-col-md-pull-12 {
          right: 50%;
        }
        .ant-col-md-offset-12 {
          margin-left: 50%;
        }
        .ant-col-md-order-12 {
          order: 12;
        }
        .ant-col-md-11 {
          display: block;
          flex: 0 0 45.83333333%;
          max-width: 45.83333333%;
        }
        .ant-col-md-push-11 {
          left: 45.83333333%;
        }
        .ant-col-md-pull-11 {
          right: 45.83333333%;
        }
        .ant-col-md-offset-11 {
          margin-left: 45.83333333%;
        }
        .ant-col-md-order-11 {
          order: 11;
        }
        .ant-col-md-10 {
          display: block;
          flex: 0 0 41.66666667%;
          max-width: 41.66666667%;
        }
        .ant-col-md-push-10 {
          left: 41.66666667%;
        }
        .ant-col-md-pull-10 {
          right: 41.66666667%;
        }
        .ant-col-md-offset-10 {
          margin-left: 41.66666667%;
        }
        .ant-col-md-order-10 {
          order: 10;
        }
        .ant-col-md-9 {
          display: block;
          flex: 0 0 37.5%;
          max-width: 37.5%;
        }
        .ant-col-md-push-9 {
          left: 37.5%;
        }
        .ant-col-md-pull-9 {
          right: 37.5%;
        }
        .ant-col-md-offset-9 {
          margin-left: 37.5%;
        }
        .ant-col-md-order-9 {
          order: 9;
        }
        .ant-col-md-8 {
          display: block;
          flex: 0 0 33.33333333%;
          max-width: 33.33333333%;
        }
        .ant-col-md-push-8 {
          left: 33.33333333%;
        }
        .ant-col-md-pull-8 {
          right: 33.33333333%;
        }
        .ant-col-md-offset-8 {
          margin-left: 33.33333333%;
        }
        .ant-col-md-order-8 {
          order: 8;
        }
        .ant-col-md-7 {
          display: block;
          flex: 0 0 29.16666667%;
          max-width: 29.16666667%;
        }
        .ant-col-md-push-7 {
          left: 29.16666667%;
        }
        .ant-col-md-pull-7 {
          right: 29.16666667%;
        }
        .ant-col-md-offset-7 {
          margin-left: 29.16666667%;
        }
        .ant-col-md-order-7 {
          order: 7;
        }
        .ant-col-md-6 {
          display: block;
          flex: 0 0 25%;
          max-width: 25%;
        }
        .ant-col-md-push-6 {
          left: 25%;
        }
        .ant-col-md-pull-6 {
          right: 25%;
        }
        .ant-col-md-offset-6 {
          margin-left: 25%;
        }
        .ant-col-md-order-6 {
          order: 6;
        }
        .ant-col-md-5 {
          display: block;
          flex: 0 0 20.83333333%;
          max-width: 20.83333333%;
        }
        .ant-col-md-push-5 {
          left: 20.83333333%;
        }
        .ant-col-md-pull-5 {
          right: 20.83333333%;
        }
        .ant-col-md-offset-5 {
          margin-left: 20.83333333%;
        }
        .ant-col-md-order-5 {
          order: 5;
        }
        .ant-col-md-4 {
          display: block;
          flex: 0 0 16.66666667%;
          max-width: 16.66666667%;
        }
        .ant-col-md-push-4 {
          left: 16.66666667%;
        }
        .ant-col-md-pull-4 {
          right: 16.66666667%;
        }
        .ant-col-md-offset-4 {
          margin-left: 16.66666667%;
        }
        .ant-col-md-order-4 {
          order: 4;
        }
        .ant-col-md-3 {
          display: block;
          flex: 0 0 12.5%;
          max-width: 12.5%;
        }
        .ant-col-md-push-3 {
          left: 12.5%;
        }
        .ant-col-md-pull-3 {
          right: 12.5%;
        }
        .ant-col-md-offset-3 {
          margin-left: 12.5%;
        }
        .ant-col-md-order-3 {
          order: 3;
        }
        .ant-col-md-2 {
          display: block;
          flex: 0 0 8.33333333%;
          max-width: 8.33333333%;
        }
        .ant-col-md-push-2 {
          left: 8.33333333%;
        }
        .ant-col-md-pull-2 {
          right: 8.33333333%;
        }
        .ant-col-md-offset-2 {
          margin-left: 8.33333333%;
        }
        .ant-col-md-order-2 {
          order: 2;
        }
        .ant-col-md-1 {
          display: block;
          flex: 0 0 4.16666667%;
          max-width: 4.16666667%;
        }
        .ant-col-md-push-1 {
          left: 4.16666667%;
        }
        .ant-col-md-pull-1 {
          right: 4.16666667%;
        }
        .ant-col-md-offset-1 {
          margin-left: 4.16666667%;
        }
        .ant-col-md-order-1 {
          order: 1;
        }
        .ant-col-md-0 {
          display: none;
        }
        .ant-col-push-0 {
          left: auto;
        }
        .ant-col-pull-0 {
          right: auto;
        }
        .ant-col-md-push-0 {
          left: auto;
        }
        .ant-col-md-pull-0 {
          right: auto;
        }
        .ant-col-md-offset-0 {
          margin-left: 0;
        }
        .ant-col-md-order-0 {
          order: 0;
        }
        .ant-col-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-md-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-md-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-md-offset-0.ant-col-rtl {
          margin-right: 0;
        }
        .ant-col-md-push-1.ant-col-rtl {
          right: 4.16666667%;
          left: auto;
        }
        .ant-col-md-pull-1.ant-col-rtl {
          right: auto;
          left: 4.16666667%;
        }
        .ant-col-md-offset-1.ant-col-rtl {
          margin-right: 4.16666667%;
          margin-left: 0;
        }
        .ant-col-md-push-2.ant-col-rtl {
          right: 8.33333333%;
          left: auto;
        }
        .ant-col-md-pull-2.ant-col-rtl {
          right: auto;
          left: 8.33333333%;
        }
        .ant-col-md-offset-2.ant-col-rtl {
          margin-right: 8.33333333%;
          margin-left: 0;
        }
        .ant-col-md-push-3.ant-col-rtl {
          right: 12.5%;
          left: auto;
        }
        .ant-col-md-pull-3.ant-col-rtl {
          right: auto;
          left: 12.5%;
        }
        .ant-col-md-offset-3.ant-col-rtl {
          margin-right: 12.5%;
          margin-left: 0;
        }
        .ant-col-md-push-4.ant-col-rtl {
          right: 16.66666667%;
          left: auto;
        }
        .ant-col-md-pull-4.ant-col-rtl {
          right: auto;
          left: 16.66666667%;
        }
        .ant-col-md-offset-4.ant-col-rtl {
          margin-right: 16.66666667%;
          margin-left: 0;
        }
        .ant-col-md-push-5.ant-col-rtl {
          right: 20.83333333%;
          left: auto;
        }
        .ant-col-md-pull-5.ant-col-rtl {
          right: auto;
          left: 20.83333333%;
        }
        .ant-col-md-offset-5.ant-col-rtl {
          margin-right: 20.83333333%;
          margin-left: 0;
        }
        .ant-col-md-push-6.ant-col-rtl {
          right: 25%;
          left: auto;
        }
        .ant-col-md-pull-6.ant-col-rtl {
          right: auto;
          left: 25%;
        }
        .ant-col-md-offset-6.ant-col-rtl {
          margin-right: 25%;
          margin-left: 0;
        }
        .ant-col-md-push-7.ant-col-rtl {
          right: 29.16666667%;
          left: auto;
        }
        .ant-col-md-pull-7.ant-col-rtl {
          right: auto;
          left: 29.16666667%;
        }
        .ant-col-md-offset-7.ant-col-rtl {
          margin-right: 29.16666667%;
          margin-left: 0;
        }
        .ant-col-md-push-8.ant-col-rtl {
          right: 33.33333333%;
          left: auto;
        }
        .ant-col-md-pull-8.ant-col-rtl {
          right: auto;
          left: 33.33333333%;
        }
        .ant-col-md-offset-8.ant-col-rtl {
          margin-right: 33.33333333%;
          margin-left: 0;
        }
        .ant-col-md-push-9.ant-col-rtl {
          right: 37.5%;
          left: auto;
        }
        .ant-col-md-pull-9.ant-col-rtl {
          right: auto;
          left: 37.5%;
        }
        .ant-col-md-offset-9.ant-col-rtl {
          margin-right: 37.5%;
          margin-left: 0;
        }
        .ant-col-md-push-10.ant-col-rtl {
          right: 41.66666667%;
          left: auto;
        }
        .ant-col-md-pull-10.ant-col-rtl {
          right: auto;
          left: 41.66666667%;
        }
        .ant-col-md-offset-10.ant-col-rtl {
          margin-right: 41.66666667%;
          margin-left: 0;
        }
        .ant-col-md-push-11.ant-col-rtl {
          right: 45.83333333%;
          left: auto;
        }
        .ant-col-md-pull-11.ant-col-rtl {
          right: auto;
          left: 45.83333333%;
        }
        .ant-col-md-offset-11.ant-col-rtl {
          margin-right: 45.83333333%;
          margin-left: 0;
        }
        .ant-col-md-push-12.ant-col-rtl {
          right: 50%;
          left: auto;
        }
        .ant-col-md-pull-12.ant-col-rtl {
          right: auto;
          left: 50%;
        }
        .ant-col-md-offset-12.ant-col-rtl {
          margin-right: 50%;
          margin-left: 0;
        }
        .ant-col-md-push-13.ant-col-rtl {
          right: 54.16666667%;
          left: auto;
        }
        .ant-col-md-pull-13.ant-col-rtl {
          right: auto;
          left: 54.16666667%;
        }
        .ant-col-md-offset-13.ant-col-rtl {
          margin-right: 54.16666667%;
          margin-left: 0;
        }
        .ant-col-md-push-14.ant-col-rtl {
          right: 58.33333333%;
          left: auto;
        }
        .ant-col-md-pull-14.ant-col-rtl {
          right: auto;
          left: 58.33333333%;
        }
        .ant-col-md-offset-14.ant-col-rtl {
          margin-right: 58.33333333%;
          margin-left: 0;
        }
        .ant-col-md-push-15.ant-col-rtl {
          right: 62.5%;
          left: auto;
        }
        .ant-col-md-pull-15.ant-col-rtl {
          right: auto;
          left: 62.5%;
        }
        .ant-col-md-offset-15.ant-col-rtl {
          margin-right: 62.5%;
          margin-left: 0;
        }
        .ant-col-md-push-16.ant-col-rtl {
          right: 66.66666667%;
          left: auto;
        }
        .ant-col-md-pull-16.ant-col-rtl {
          right: auto;
          left: 66.66666667%;
        }
        .ant-col-md-offset-16.ant-col-rtl {
          margin-right: 66.66666667%;
          margin-left: 0;
        }
        .ant-col-md-push-17.ant-col-rtl {
          right: 70.83333333%;
          left: auto;
        }
        .ant-col-md-pull-17.ant-col-rtl {
          right: auto;
          left: 70.83333333%;
        }
        .ant-col-md-offset-17.ant-col-rtl {
          margin-right: 70.83333333%;
          margin-left: 0;
        }
        .ant-col-md-push-18.ant-col-rtl {
          right: 75%;
          left: auto;
        }
        .ant-col-md-pull-18.ant-col-rtl {
          right: auto;
          left: 75%;
        }
        .ant-col-md-offset-18.ant-col-rtl {
          margin-right: 75%;
          margin-left: 0;
        }
        .ant-col-md-push-19.ant-col-rtl {
          right: 79.16666667%;
          left: auto;
        }
        .ant-col-md-pull-19.ant-col-rtl {
          right: auto;
          left: 79.16666667%;
        }
        .ant-col-md-offset-19.ant-col-rtl {
          margin-right: 79.16666667%;
          margin-left: 0;
        }
        .ant-col-md-push-20.ant-col-rtl {
          right: 83.33333333%;
          left: auto;
        }
        .ant-col-md-pull-20.ant-col-rtl {
          right: auto;
          left: 83.33333333%;
        }
        .ant-col-md-offset-20.ant-col-rtl {
          margin-right: 83.33333333%;
          margin-left: 0;
        }
        .ant-col-md-push-21.ant-col-rtl {
          right: 87.5%;
          left: auto;
        }
        .ant-col-md-pull-21.ant-col-rtl {
          right: auto;
          left: 87.5%;
        }
        .ant-col-md-offset-21.ant-col-rtl {
          margin-right: 87.5%;
          margin-left: 0;
        }
        .ant-col-md-push-22.ant-col-rtl {
          right: 91.66666667%;
          left: auto;
        }
        .ant-col-md-pull-22.ant-col-rtl {
          right: auto;
          left: 91.66666667%;
        }
        .ant-col-md-offset-22.ant-col-rtl {
          margin-right: 91.66666667%;
          margin-left: 0;
        }
        .ant-col-md-push-23.ant-col-rtl {
          right: 95.83333333%;
          left: auto;
        }
        .ant-col-md-pull-23.ant-col-rtl {
          right: auto;
          left: 95.83333333%;
        }
        .ant-col-md-offset-23.ant-col-rtl {
          margin-right: 95.83333333%;
          margin-left: 0;
        }
        .ant-col-md-push-24.ant-col-rtl {
          right: 100%;
          left: auto;
        }
        .ant-col-md-pull-24.ant-col-rtl {
          right: auto;
          left: 100%;
        }
        .ant-col-md-offset-24.ant-col-rtl {
          margin-right: 100%;
          margin-left: 0;
        }
      }
      @media (min-width: 992px) {
        .ant-col-lg-24 {
          display: block;
          flex: 0 0 100%;
          max-width: 100%;
        }
        .ant-col-lg-push-24 {
          left: 100%;
        }
        .ant-col-lg-pull-24 {
          right: 100%;
        }
        .ant-col-lg-offset-24 {
          margin-left: 100%;
        }
        .ant-col-lg-order-24 {
          order: 24;
        }
        .ant-col-lg-23 {
          display: block;
          flex: 0 0 95.83333333%;
          max-width: 95.83333333%;
        }
        .ant-col-lg-push-23 {
          left: 95.83333333%;
        }
        .ant-col-lg-pull-23 {
          right: 95.83333333%;
        }
        .ant-col-lg-offset-23 {
          margin-left: 95.83333333%;
        }
        .ant-col-lg-order-23 {
          order: 23;
        }
        .ant-col-lg-22 {
          display: block;
          flex: 0 0 91.66666667%;
          max-width: 91.66666667%;
        }
        .ant-col-lg-push-22 {
          left: 91.66666667%;
        }
        .ant-col-lg-pull-22 {
          right: 91.66666667%;
        }
        .ant-col-lg-offset-22 {
          margin-left: 91.66666667%;
        }
        .ant-col-lg-order-22 {
          order: 22;
        }
        .ant-col-lg-21 {
          display: block;
          flex: 0 0 87.5%;
          max-width: 87.5%;
        }
        .ant-col-lg-push-21 {
          left: 87.5%;
        }
        .ant-col-lg-pull-21 {
          right: 87.5%;
        }
        .ant-col-lg-offset-21 {
          margin-left: 87.5%;
        }
        .ant-col-lg-order-21 {
          order: 21;
        }
        .ant-col-lg-20 {
          display: block;
          flex: 0 0 83.33333333%;
          max-width: 83.33333333%;
        }
        .ant-col-lg-push-20 {
          left: 83.33333333%;
        }
        .ant-col-lg-pull-20 {
          right: 83.33333333%;
        }
        .ant-col-lg-offset-20 {
          margin-left: 83.33333333%;
        }
        .ant-col-lg-order-20 {
          order: 20;
        }
        .ant-col-lg-19 {
          display: block;
          flex: 0 0 79.16666667%;
          max-width: 79.16666667%;
        }
        .ant-col-lg-push-19 {
          left: 79.16666667%;
        }
        .ant-col-lg-pull-19 {
          right: 79.16666667%;
        }
        .ant-col-lg-offset-19 {
          margin-left: 79.16666667%;
        }
        .ant-col-lg-order-19 {
          order: 19;
        }
        .ant-col-lg-18 {
          display: block;
          flex: 0 0 75%;
          max-width: 75%;
        }
        .ant-col-lg-push-18 {
          left: 75%;
        }
        .ant-col-lg-pull-18 {
          right: 75%;
        }
        .ant-col-lg-offset-18 {
          margin-left: 75%;
        }
        .ant-col-lg-order-18 {
          order: 18;
        }
        .ant-col-lg-17 {
          display: block;
          flex: 0 0 70.83333333%;
          max-width: 70.83333333%;
        }
        .ant-col-lg-push-17 {
          left: 70.83333333%;
        }
        .ant-col-lg-pull-17 {
          right: 70.83333333%;
        }
        .ant-col-lg-offset-17 {
          margin-left: 70.83333333%;
        }
        .ant-col-lg-order-17 {
          order: 17;
        }
        .ant-col-lg-16 {
          display: block;
          flex: 0 0 66.66666667%;
          max-width: 66.66666667%;
        }
        .ant-col-lg-push-16 {
          left: 66.66666667%;
        }
        .ant-col-lg-pull-16 {
          right: 66.66666667%;
        }
        .ant-col-lg-offset-16 {
          margin-left: 66.66666667%;
        }
        .ant-col-lg-order-16 {
          order: 16;
        }
        .ant-col-lg-15 {
          display: block;
          flex: 0 0 62.5%;
          max-width: 62.5%;
        }
        .ant-col-lg-push-15 {
          left: 62.5%;
        }
        .ant-col-lg-pull-15 {
          right: 62.5%;
        }
        .ant-col-lg-offset-15 {
          margin-left: 62.5%;
        }
        .ant-col-lg-order-15 {
          order: 15;
        }
        .ant-col-lg-14 {
          display: block;
          flex: 0 0 58.33333333%;
          max-width: 58.33333333%;
        }
        .ant-col-lg-push-14 {
          left: 58.33333333%;
        }
        .ant-col-lg-pull-14 {
          right: 58.33333333%;
        }
        .ant-col-lg-offset-14 {
          margin-left: 58.33333333%;
        }
        .ant-col-lg-order-14 {
          order: 14;
        }
        .ant-col-lg-13 {
          display: block;
          flex: 0 0 54.16666667%;
          max-width: 54.16666667%;
        }
        .ant-col-lg-push-13 {
          left: 54.16666667%;
        }
        .ant-col-lg-pull-13 {
          right: 54.16666667%;
        }
        .ant-col-lg-offset-13 {
          margin-left: 54.16666667%;
        }
        .ant-col-lg-order-13 {
          order: 13;
        }
        .ant-col-lg-12 {
          display: block;
          flex: 0 0 50%;
          max-width: 50%;
        }
        .ant-col-lg-push-12 {
          left: 50%;
        }
        .ant-col-lg-pull-12 {
          right: 50%;
        }
        .ant-col-lg-offset-12 {
          margin-left: 50%;
        }
        .ant-col-lg-order-12 {
          order: 12;
        }
        .ant-col-lg-11 {
          display: block;
          flex: 0 0 45.83333333%;
          max-width: 45.83333333%;
        }
        .ant-col-lg-push-11 {
          left: 45.83333333%;
        }
        .ant-col-lg-pull-11 {
          right: 45.83333333%;
        }
        .ant-col-lg-offset-11 {
          margin-left: 45.83333333%;
        }
        .ant-col-lg-order-11 {
          order: 11;
        }
        .ant-col-lg-10 {
          display: block;
          flex: 0 0 41.66666667%;
          max-width: 41.66666667%;
        }
        .ant-col-lg-push-10 {
          left: 41.66666667%;
        }
        .ant-col-lg-pull-10 {
          right: 41.66666667%;
        }
        .ant-col-lg-offset-10 {
          margin-left: 41.66666667%;
        }
        .ant-col-lg-order-10 {
          order: 10;
        }
        .ant-col-lg-9 {
          display: block;
          flex: 0 0 37.5%;
          max-width: 37.5%;
        }
        .ant-col-lg-push-9 {
          left: 37.5%;
        }
        .ant-col-lg-pull-9 {
          right: 37.5%;
        }
        .ant-col-lg-offset-9 {
          margin-left: 37.5%;
        }
        .ant-col-lg-order-9 {
          order: 9;
        }
        .ant-col-lg-8 {
          display: block;
          flex: 0 0 33.33333333%;
          max-width: 33.33333333%;
        }
        .ant-col-lg-push-8 {
          left: 33.33333333%;
        }
        .ant-col-lg-pull-8 {
          right: 33.33333333%;
        }
        .ant-col-lg-offset-8 {
          margin-left: 33.33333333%;
        }
        .ant-col-lg-order-8 {
          order: 8;
        }
        .ant-col-lg-7 {
          display: block;
          flex: 0 0 29.16666667%;
          max-width: 29.16666667%;
        }
        .ant-col-lg-push-7 {
          left: 29.16666667%;
        }
        .ant-col-lg-pull-7 {
          right: 29.16666667%;
        }
        .ant-col-lg-offset-7 {
          margin-left: 29.16666667%;
        }
        .ant-col-lg-order-7 {
          order: 7;
        }
        .ant-col-lg-6 {
          display: block;
          flex: 0 0 25%;
          max-width: 25%;
        }
        .ant-col-lg-push-6 {
          left: 25%;
        }
        .ant-col-lg-pull-6 {
          right: 25%;
        }
        .ant-col-lg-offset-6 {
          margin-left: 25%;
        }
        .ant-col-lg-order-6 {
          order: 6;
        }
        .ant-col-lg-5 {
          display: block;
          flex: 0 0 20.83333333%;
          max-width: 20.83333333%;
        }
        .ant-col-lg-push-5 {
          left: 20.83333333%;
        }
        .ant-col-lg-pull-5 {
          right: 20.83333333%;
        }
        .ant-col-lg-offset-5 {
          margin-left: 20.83333333%;
        }
        .ant-col-lg-order-5 {
          order: 5;
        }
        .ant-col-lg-4 {
          display: block;
          flex: 0 0 16.66666667%;
          max-width: 16.66666667%;
        }
        .ant-col-lg-push-4 {
          left: 16.66666667%;
        }
        .ant-col-lg-pull-4 {
          right: 16.66666667%;
        }
        .ant-col-lg-offset-4 {
          margin-left: 16.66666667%;
        }
        .ant-col-lg-order-4 {
          order: 4;
        }
        .ant-col-lg-3 {
          display: block;
          flex: 0 0 12.5%;
          max-width: 12.5%;
        }
        .ant-col-lg-push-3 {
          left: 12.5%;
        }
        .ant-col-lg-pull-3 {
          right: 12.5%;
        }
        .ant-col-lg-offset-3 {
          margin-left: 12.5%;
        }
        .ant-col-lg-order-3 {
          order: 3;
        }
        .ant-col-lg-2 {
          display: block;
          flex: 0 0 8.33333333%;
          max-width: 8.33333333%;
        }
        .ant-col-lg-push-2 {
          left: 8.33333333%;
        }
        .ant-col-lg-pull-2 {
          right: 8.33333333%;
        }
        .ant-col-lg-offset-2 {
          margin-left: 8.33333333%;
        }
        .ant-col-lg-order-2 {
          order: 2;
        }
        .ant-col-lg-1 {
          display: block;
          flex: 0 0 4.16666667%;
          max-width: 4.16666667%;
        }
        .ant-col-lg-push-1 {
          left: 4.16666667%;
        }
        .ant-col-lg-pull-1 {
          right: 4.16666667%;
        }
        .ant-col-lg-offset-1 {
          margin-left: 4.16666667%;
        }
        .ant-col-lg-order-1 {
          order: 1;
        }
        .ant-col-lg-0 {
          display: none;
        }
        .ant-col-push-0 {
          left: auto;
        }
        .ant-col-pull-0 {
          right: auto;
        }
        .ant-col-lg-push-0 {
          left: auto;
        }
        .ant-col-lg-pull-0 {
          right: auto;
        }
        .ant-col-lg-offset-0 {
          margin-left: 0;
        }
        .ant-col-lg-order-0 {
          order: 0;
        }
        .ant-col-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-lg-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-lg-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-lg-offset-0.ant-col-rtl {
          margin-right: 0;
        }
        .ant-col-lg-push-1.ant-col-rtl {
          right: 4.16666667%;
          left: auto;
        }
        .ant-col-lg-pull-1.ant-col-rtl {
          right: auto;
          left: 4.16666667%;
        }
        .ant-col-lg-offset-1.ant-col-rtl {
          margin-right: 4.16666667%;
          margin-left: 0;
        }
        .ant-col-lg-push-2.ant-col-rtl {
          right: 8.33333333%;
          left: auto;
        }
        .ant-col-lg-pull-2.ant-col-rtl {
          right: auto;
          left: 8.33333333%;
        }
        .ant-col-lg-offset-2.ant-col-rtl {
          margin-right: 8.33333333%;
          margin-left: 0;
        }
        .ant-col-lg-push-3.ant-col-rtl {
          right: 12.5%;
          left: auto;
        }
        .ant-col-lg-pull-3.ant-col-rtl {
          right: auto;
          left: 12.5%;
        }
        .ant-col-lg-offset-3.ant-col-rtl {
          margin-right: 12.5%;
          margin-left: 0;
        }
        .ant-col-lg-push-4.ant-col-rtl {
          right: 16.66666667%;
          left: auto;
        }
        .ant-col-lg-pull-4.ant-col-rtl {
          right: auto;
          left: 16.66666667%;
        }
        .ant-col-lg-offset-4.ant-col-rtl {
          margin-right: 16.66666667%;
          margin-left: 0;
        }
        .ant-col-lg-push-5.ant-col-rtl {
          right: 20.83333333%;
          left: auto;
        }
        .ant-col-lg-pull-5.ant-col-rtl {
          right: auto;
          left: 20.83333333%;
        }
        .ant-col-lg-offset-5.ant-col-rtl {
          margin-right: 20.83333333%;
          margin-left: 0;
        }
        .ant-col-lg-push-6.ant-col-rtl {
          right: 25%;
          left: auto;
        }
        .ant-col-lg-pull-6.ant-col-rtl {
          right: auto;
          left: 25%;
        }
        .ant-col-lg-offset-6.ant-col-rtl {
          margin-right: 25%;
          margin-left: 0;
        }
        .ant-col-lg-push-7.ant-col-rtl {
          right: 29.16666667%;
          left: auto;
        }
        .ant-col-lg-pull-7.ant-col-rtl {
          right: auto;
          left: 29.16666667%;
        }
        .ant-col-lg-offset-7.ant-col-rtl {
          margin-right: 29.16666667%;
          margin-left: 0;
        }
        .ant-col-lg-push-8.ant-col-rtl {
          right: 33.33333333%;
          left: auto;
        }
        .ant-col-lg-pull-8.ant-col-rtl {
          right: auto;
          left: 33.33333333%;
        }
        .ant-col-lg-offset-8.ant-col-rtl {
          margin-right: 33.33333333%;
          margin-left: 0;
        }
        .ant-col-lg-push-9.ant-col-rtl {
          right: 37.5%;
          left: auto;
        }
        .ant-col-lg-pull-9.ant-col-rtl {
          right: auto;
          left: 37.5%;
        }
        .ant-col-lg-offset-9.ant-col-rtl {
          margin-right: 37.5%;
          margin-left: 0;
        }
        .ant-col-lg-push-10.ant-col-rtl {
          right: 41.66666667%;
          left: auto;
        }
        .ant-col-lg-pull-10.ant-col-rtl {
          right: auto;
          left: 41.66666667%;
        }
        .ant-col-lg-offset-10.ant-col-rtl {
          margin-right: 41.66666667%;
          margin-left: 0;
        }
        .ant-col-lg-push-11.ant-col-rtl {
          right: 45.83333333%;
          left: auto;
        }
        .ant-col-lg-pull-11.ant-col-rtl {
          right: auto;
          left: 45.83333333%;
        }
        .ant-col-lg-offset-11.ant-col-rtl {
          margin-right: 45.83333333%;
          margin-left: 0;
        }
        .ant-col-lg-push-12.ant-col-rtl {
          right: 50%;
          left: auto;
        }
        .ant-col-lg-pull-12.ant-col-rtl {
          right: auto;
          left: 50%;
        }
        .ant-col-lg-offset-12.ant-col-rtl {
          margin-right: 50%;
          margin-left: 0;
        }
        .ant-col-lg-push-13.ant-col-rtl {
          right: 54.16666667%;
          left: auto;
        }
        .ant-col-lg-pull-13.ant-col-rtl {
          right: auto;
          left: 54.16666667%;
        }
        .ant-col-lg-offset-13.ant-col-rtl {
          margin-right: 54.16666667%;
          margin-left: 0;
        }
        .ant-col-lg-push-14.ant-col-rtl {
          right: 58.33333333%;
          left: auto;
        }
        .ant-col-lg-pull-14.ant-col-rtl {
          right: auto;
          left: 58.33333333%;
        }
        .ant-col-lg-offset-14.ant-col-rtl {
          margin-right: 58.33333333%;
          margin-left: 0;
        }
        .ant-col-lg-push-15.ant-col-rtl {
          right: 62.5%;
          left: auto;
        }
        .ant-col-lg-pull-15.ant-col-rtl {
          right: auto;
          left: 62.5%;
        }
        .ant-col-lg-offset-15.ant-col-rtl {
          margin-right: 62.5%;
          margin-left: 0;
        }
        .ant-col-lg-push-16.ant-col-rtl {
          right: 66.66666667%;
          left: auto;
        }
        .ant-col-lg-pull-16.ant-col-rtl {
          right: auto;
          left: 66.66666667%;
        }
        .ant-col-lg-offset-16.ant-col-rtl {
          margin-right: 66.66666667%;
          margin-left: 0;
        }
        .ant-col-lg-push-17.ant-col-rtl {
          right: 70.83333333%;
          left: auto;
        }
        .ant-col-lg-pull-17.ant-col-rtl {
          right: auto;
          left: 70.83333333%;
        }
        .ant-col-lg-offset-17.ant-col-rtl {
          margin-right: 70.83333333%;
          margin-left: 0;
        }
        .ant-col-lg-push-18.ant-col-rtl {
          right: 75%;
          left: auto;
        }
        .ant-col-lg-pull-18.ant-col-rtl {
          right: auto;
          left: 75%;
        }
        .ant-col-lg-offset-18.ant-col-rtl {
          margin-right: 75%;
          margin-left: 0;
        }
        .ant-col-lg-push-19.ant-col-rtl {
          right: 79.16666667%;
          left: auto;
        }
        .ant-col-lg-pull-19.ant-col-rtl {
          right: auto;
          left: 79.16666667%;
        }
        .ant-col-lg-offset-19.ant-col-rtl {
          margin-right: 79.16666667%;
          margin-left: 0;
        }
        .ant-col-lg-push-20.ant-col-rtl {
          right: 83.33333333%;
          left: auto;
        }
        .ant-col-lg-pull-20.ant-col-rtl {
          right: auto;
          left: 83.33333333%;
        }
        .ant-col-lg-offset-20.ant-col-rtl {
          margin-right: 83.33333333%;
          margin-left: 0;
        }
        .ant-col-lg-push-21.ant-col-rtl {
          right: 87.5%;
          left: auto;
        }
        .ant-col-lg-pull-21.ant-col-rtl {
          right: auto;
          left: 87.5%;
        }
        .ant-col-lg-offset-21.ant-col-rtl {
          margin-right: 87.5%;
          margin-left: 0;
        }
        .ant-col-lg-push-22.ant-col-rtl {
          right: 91.66666667%;
          left: auto;
        }
        .ant-col-lg-pull-22.ant-col-rtl {
          right: auto;
          left: 91.66666667%;
        }
        .ant-col-lg-offset-22.ant-col-rtl {
          margin-right: 91.66666667%;
          margin-left: 0;
        }
        .ant-col-lg-push-23.ant-col-rtl {
          right: 95.83333333%;
          left: auto;
        }
        .ant-col-lg-pull-23.ant-col-rtl {
          right: auto;
          left: 95.83333333%;
        }
        .ant-col-lg-offset-23.ant-col-rtl {
          margin-right: 95.83333333%;
          margin-left: 0;
        }
        .ant-col-lg-push-24.ant-col-rtl {
          right: 100%;
          left: auto;
        }
        .ant-col-lg-pull-24.ant-col-rtl {
          right: auto;
          left: 100%;
        }
        .ant-col-lg-offset-24.ant-col-rtl {
          margin-right: 100%;
          margin-left: 0;
        }
      }
      @media (min-width: 1200px) {
        .ant-col-xl-24 {
          display: block;
          flex: 0 0 100%;
          max-width: 100%;
        }
        .ant-col-xl-push-24 {
          left: 100%;
        }
        .ant-col-xl-pull-24 {
          right: 100%;
        }
        .ant-col-xl-offset-24 {
          margin-left: 100%;
        }
        .ant-col-xl-order-24 {
          order: 24;
        }
        .ant-col-xl-23 {
          display: block;
          flex: 0 0 95.83333333%;
          max-width: 95.83333333%;
        }
        .ant-col-xl-push-23 {
          left: 95.83333333%;
        }
        .ant-col-xl-pull-23 {
          right: 95.83333333%;
        }
        .ant-col-xl-offset-23 {
          margin-left: 95.83333333%;
        }
        .ant-col-xl-order-23 {
          order: 23;
        }
        .ant-col-xl-22 {
          display: block;
          flex: 0 0 91.66666667%;
          max-width: 91.66666667%;
        }
        .ant-col-xl-push-22 {
          left: 91.66666667%;
        }
        .ant-col-xl-pull-22 {
          right: 91.66666667%;
        }
        .ant-col-xl-offset-22 {
          margin-left: 91.66666667%;
        }
        .ant-col-xl-order-22 {
          order: 22;
        }
        .ant-col-xl-21 {
          display: block;
          flex: 0 0 87.5%;
          max-width: 87.5%;
        }
        .ant-col-xl-push-21 {
          left: 87.5%;
        }
        .ant-col-xl-pull-21 {
          right: 87.5%;
        }
        .ant-col-xl-offset-21 {
          margin-left: 87.5%;
        }
        .ant-col-xl-order-21 {
          order: 21;
        }
        .ant-col-xl-20 {
          display: block;
          flex: 0 0 83.33333333%;
          max-width: 83.33333333%;
        }
        .ant-col-xl-push-20 {
          left: 83.33333333%;
        }
        .ant-col-xl-pull-20 {
          right: 83.33333333%;
        }
        .ant-col-xl-offset-20 {
          margin-left: 83.33333333%;
        }
        .ant-col-xl-order-20 {
          order: 20;
        }
        .ant-col-xl-19 {
          display: block;
          flex: 0 0 79.16666667%;
          max-width: 79.16666667%;
        }
        .ant-col-xl-push-19 {
          left: 79.16666667%;
        }
        .ant-col-xl-pull-19 {
          right: 79.16666667%;
        }
        .ant-col-xl-offset-19 {
          margin-left: 79.16666667%;
        }
        .ant-col-xl-order-19 {
          order: 19;
        }
        .ant-col-xl-18 {
          display: block;
          flex: 0 0 75%;
          max-width: 75%;
        }
        .ant-col-xl-push-18 {
          left: 75%;
        }
        .ant-col-xl-pull-18 {
          right: 75%;
        }
        .ant-col-xl-offset-18 {
          margin-left: 75%;
        }
        .ant-col-xl-order-18 {
          order: 18;
        }
        .ant-col-xl-17 {
          display: block;
          flex: 0 0 70.83333333%;
          max-width: 70.83333333%;
        }
        .ant-col-xl-push-17 {
          left: 70.83333333%;
        }
        .ant-col-xl-pull-17 {
          right: 70.83333333%;
        }
        .ant-col-xl-offset-17 {
          margin-left: 70.83333333%;
        }
        .ant-col-xl-order-17 {
          order: 17;
        }
        .ant-col-xl-16 {
          display: block;
          flex: 0 0 66.66666667%;
          max-width: 66.66666667%;
        }
        .ant-col-xl-push-16 {
          left: 66.66666667%;
        }
        .ant-col-xl-pull-16 {
          right: 66.66666667%;
        }
        .ant-col-xl-offset-16 {
          margin-left: 66.66666667%;
        }
        .ant-col-xl-order-16 {
          order: 16;
        }
        .ant-col-xl-15 {
          display: block;
          flex: 0 0 62.5%;
          max-width: 62.5%;
        }
        .ant-col-xl-push-15 {
          left: 62.5%;
        }
        .ant-col-xl-pull-15 {
          right: 62.5%;
        }
        .ant-col-xl-offset-15 {
          margin-left: 62.5%;
        }
        .ant-col-xl-order-15 {
          order: 15;
        }
        .ant-col-xl-14 {
          display: block;
          flex: 0 0 58.33333333%;
          max-width: 58.33333333%;
        }
        .ant-col-xl-push-14 {
          left: 58.33333333%;
        }
        .ant-col-xl-pull-14 {
          right: 58.33333333%;
        }
        .ant-col-xl-offset-14 {
          margin-left: 58.33333333%;
        }
        .ant-col-xl-order-14 {
          order: 14;
        }
        .ant-col-xl-13 {
          display: block;
          flex: 0 0 54.16666667%;
          max-width: 54.16666667%;
        }
        .ant-col-xl-push-13 {
          left: 54.16666667%;
        }
        .ant-col-xl-pull-13 {
          right: 54.16666667%;
        }
        .ant-col-xl-offset-13 {
          margin-left: 54.16666667%;
        }
        .ant-col-xl-order-13 {
          order: 13;
        }
        .ant-col-xl-12 {
          display: block;
          flex: 0 0 50%;
          max-width: 50%;
        }
        .ant-col-xl-push-12 {
          left: 50%;
        }
        .ant-col-xl-pull-12 {
          right: 50%;
        }
        .ant-col-xl-offset-12 {
          margin-left: 50%;
        }
        .ant-col-xl-order-12 {
          order: 12;
        }
        .ant-col-xl-11 {
          display: block;
          flex: 0 0 45.83333333%;
          max-width: 45.83333333%;
        }
        .ant-col-xl-push-11 {
          left: 45.83333333%;
        }
        .ant-col-xl-pull-11 {
          right: 45.83333333%;
        }
        .ant-col-xl-offset-11 {
          margin-left: 45.83333333%;
        }
        .ant-col-xl-order-11 {
          order: 11;
        }
        .ant-col-xl-10 {
          display: block;
          flex: 0 0 41.66666667%;
          max-width: 41.66666667%;
        }
        .ant-col-xl-push-10 {
          left: 41.66666667%;
        }
        .ant-col-xl-pull-10 {
          right: 41.66666667%;
        }
        .ant-col-xl-offset-10 {
          margin-left: 41.66666667%;
        }
        .ant-col-xl-order-10 {
          order: 10;
        }
        .ant-col-xl-9 {
          display: block;
          flex: 0 0 37.5%;
          max-width: 37.5%;
        }
        .ant-col-xl-push-9 {
          left: 37.5%;
        }
        .ant-col-xl-pull-9 {
          right: 37.5%;
        }
        .ant-col-xl-offset-9 {
          margin-left: 37.5%;
        }
        .ant-col-xl-order-9 {
          order: 9;
        }
        .ant-col-xl-8 {
          display: block;
          flex: 0 0 33.33333333%;
          max-width: 33.33333333%;
        }
        .ant-col-xl-push-8 {
          left: 33.33333333%;
        }
        .ant-col-xl-pull-8 {
          right: 33.33333333%;
        }
        .ant-col-xl-offset-8 {
          margin-left: 33.33333333%;
        }
        .ant-col-xl-order-8 {
          order: 8;
        }
        .ant-col-xl-7 {
          display: block;
          flex: 0 0 29.16666667%;
          max-width: 29.16666667%;
        }
        .ant-col-xl-push-7 {
          left: 29.16666667%;
        }
        .ant-col-xl-pull-7 {
          right: 29.16666667%;
        }
        .ant-col-xl-offset-7 {
          margin-left: 29.16666667%;
        }
        .ant-col-xl-order-7 {
          order: 7;
        }
        .ant-col-xl-6 {
          display: block;
          flex: 0 0 25%;
          max-width: 25%;
        }
        .ant-col-xl-push-6 {
          left: 25%;
        }
        .ant-col-xl-pull-6 {
          right: 25%;
        }
        .ant-col-xl-offset-6 {
          margin-left: 25%;
        }
        .ant-col-xl-order-6 {
          order: 6;
        }
        .ant-col-xl-5 {
          display: block;
          flex: 0 0 20.83333333%;
          max-width: 20.83333333%;
        }
        .ant-col-xl-push-5 {
          left: 20.83333333%;
        }
        .ant-col-xl-pull-5 {
          right: 20.83333333%;
        }
        .ant-col-xl-offset-5 {
          margin-left: 20.83333333%;
        }
        .ant-col-xl-order-5 {
          order: 5;
        }
        .ant-col-xl-4 {
          display: block;
          flex: 0 0 16.66666667%;
          max-width: 16.66666667%;
        }
        .ant-col-xl-push-4 {
          left: 16.66666667%;
        }
        .ant-col-xl-pull-4 {
          right: 16.66666667%;
        }
        .ant-col-xl-offset-4 {
          margin-left: 16.66666667%;
        }
        .ant-col-xl-order-4 {
          order: 4;
        }
        .ant-col-xl-3 {
          display: block;
          flex: 0 0 12.5%;
          max-width: 12.5%;
        }
        .ant-col-xl-push-3 {
          left: 12.5%;
        }
        .ant-col-xl-pull-3 {
          right: 12.5%;
        }
        .ant-col-xl-offset-3 {
          margin-left: 12.5%;
        }
        .ant-col-xl-order-3 {
          order: 3;
        }
        .ant-col-xl-2 {
          display: block;
          flex: 0 0 8.33333333%;
          max-width: 8.33333333%;
        }
        .ant-col-xl-push-2 {
          left: 8.33333333%;
        }
        .ant-col-xl-pull-2 {
          right: 8.33333333%;
        }
        .ant-col-xl-offset-2 {
          margin-left: 8.33333333%;
        }
        .ant-col-xl-order-2 {
          order: 2;
        }
        .ant-col-xl-1 {
          display: block;
          flex: 0 0 4.16666667%;
          max-width: 4.16666667%;
        }
        .ant-col-xl-push-1 {
          left: 4.16666667%;
        }
        .ant-col-xl-pull-1 {
          right: 4.16666667%;
        }
        .ant-col-xl-offset-1 {
          margin-left: 4.16666667%;
        }
        .ant-col-xl-order-1 {
          order: 1;
        }
        .ant-col-xl-0 {
          display: none;
        }
        .ant-col-push-0 {
          left: auto;
        }
        .ant-col-pull-0 {
          right: auto;
        }
        .ant-col-xl-push-0 {
          left: auto;
        }
        .ant-col-xl-pull-0 {
          right: auto;
        }
        .ant-col-xl-offset-0 {
          margin-left: 0;
        }
        .ant-col-xl-order-0 {
          order: 0;
        }
        .ant-col-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-xl-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-xl-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-xl-offset-0.ant-col-rtl {
          margin-right: 0;
        }
        .ant-col-xl-push-1.ant-col-rtl {
          right: 4.16666667%;
          left: auto;
        }
        .ant-col-xl-pull-1.ant-col-rtl {
          right: auto;
          left: 4.16666667%;
        }
        .ant-col-xl-offset-1.ant-col-rtl {
          margin-right: 4.16666667%;
          margin-left: 0;
        }
        .ant-col-xl-push-2.ant-col-rtl {
          right: 8.33333333%;
          left: auto;
        }
        .ant-col-xl-pull-2.ant-col-rtl {
          right: auto;
          left: 8.33333333%;
        }
        .ant-col-xl-offset-2.ant-col-rtl {
          margin-right: 8.33333333%;
          margin-left: 0;
        }
        .ant-col-xl-push-3.ant-col-rtl {
          right: 12.5%;
          left: auto;
        }
        .ant-col-xl-pull-3.ant-col-rtl {
          right: auto;
          left: 12.5%;
        }
        .ant-col-xl-offset-3.ant-col-rtl {
          margin-right: 12.5%;
          margin-left: 0;
        }
        .ant-col-xl-push-4.ant-col-rtl {
          right: 16.66666667%;
          left: auto;
        }
        .ant-col-xl-pull-4.ant-col-rtl {
          right: auto;
          left: 16.66666667%;
        }
        .ant-col-xl-offset-4.ant-col-rtl {
          margin-right: 16.66666667%;
          margin-left: 0;
        }
        .ant-col-xl-push-5.ant-col-rtl {
          right: 20.83333333%;
          left: auto;
        }
        .ant-col-xl-pull-5.ant-col-rtl {
          right: auto;
          left: 20.83333333%;
        }
        .ant-col-xl-offset-5.ant-col-rtl {
          margin-right: 20.83333333%;
          margin-left: 0;
        }
        .ant-col-xl-push-6.ant-col-rtl {
          right: 25%;
          left: auto;
        }
        .ant-col-xl-pull-6.ant-col-rtl {
          right: auto;
          left: 25%;
        }
        .ant-col-xl-offset-6.ant-col-rtl {
          margin-right: 25%;
          margin-left: 0;
        }
        .ant-col-xl-push-7.ant-col-rtl {
          right: 29.16666667%;
          left: auto;
        }
        .ant-col-xl-pull-7.ant-col-rtl {
          right: auto;
          left: 29.16666667%;
        }
        .ant-col-xl-offset-7.ant-col-rtl {
          margin-right: 29.16666667%;
          margin-left: 0;
        }
        .ant-col-xl-push-8.ant-col-rtl {
          right: 33.33333333%;
          left: auto;
        }
        .ant-col-xl-pull-8.ant-col-rtl {
          right: auto;
          left: 33.33333333%;
        }
        .ant-col-xl-offset-8.ant-col-rtl {
          margin-right: 33.33333333%;
          margin-left: 0;
        }
        .ant-col-xl-push-9.ant-col-rtl {
          right: 37.5%;
          left: auto;
        }
        .ant-col-xl-pull-9.ant-col-rtl {
          right: auto;
          left: 37.5%;
        }
        .ant-col-xl-offset-9.ant-col-rtl {
          margin-right: 37.5%;
          margin-left: 0;
        }
        .ant-col-xl-push-10.ant-col-rtl {
          right: 41.66666667%;
          left: auto;
        }
        .ant-col-xl-pull-10.ant-col-rtl {
          right: auto;
          left: 41.66666667%;
        }
        .ant-col-xl-offset-10.ant-col-rtl {
          margin-right: 41.66666667%;
          margin-left: 0;
        }
        .ant-col-xl-push-11.ant-col-rtl {
          right: 45.83333333%;
          left: auto;
        }
        .ant-col-xl-pull-11.ant-col-rtl {
          right: auto;
          left: 45.83333333%;
        }
        .ant-col-xl-offset-11.ant-col-rtl {
          margin-right: 45.83333333%;
          margin-left: 0;
        }
        .ant-col-xl-push-12.ant-col-rtl {
          right: 50%;
          left: auto;
        }
        .ant-col-xl-pull-12.ant-col-rtl {
          right: auto;
          left: 50%;
        }
        .ant-col-xl-offset-12.ant-col-rtl {
          margin-right: 50%;
          margin-left: 0;
        }
        .ant-col-xl-push-13.ant-col-rtl {
          right: 54.16666667%;
          left: auto;
        }
        .ant-col-xl-pull-13.ant-col-rtl {
          right: auto;
          left: 54.16666667%;
        }
        .ant-col-xl-offset-13.ant-col-rtl {
          margin-right: 54.16666667%;
          margin-left: 0;
        }
        .ant-col-xl-push-14.ant-col-rtl {
          right: 58.33333333%;
          left: auto;
        }
        .ant-col-xl-pull-14.ant-col-rtl {
          right: auto;
          left: 58.33333333%;
        }
        .ant-col-xl-offset-14.ant-col-rtl {
          margin-right: 58.33333333%;
          margin-left: 0;
        }
        .ant-col-xl-push-15.ant-col-rtl {
          right: 62.5%;
          left: auto;
        }
        .ant-col-xl-pull-15.ant-col-rtl {
          right: auto;
          left: 62.5%;
        }
        .ant-col-xl-offset-15.ant-col-rtl {
          margin-right: 62.5%;
          margin-left: 0;
        }
        .ant-col-xl-push-16.ant-col-rtl {
          right: 66.66666667%;
          left: auto;
        }
        .ant-col-xl-pull-16.ant-col-rtl {
          right: auto;
          left: 66.66666667%;
        }
        .ant-col-xl-offset-16.ant-col-rtl {
          margin-right: 66.66666667%;
          margin-left: 0;
        }
        .ant-col-xl-push-17.ant-col-rtl {
          right: 70.83333333%;
          left: auto;
        }
        .ant-col-xl-pull-17.ant-col-rtl {
          right: auto;
          left: 70.83333333%;
        }
        .ant-col-xl-offset-17.ant-col-rtl {
          margin-right: 70.83333333%;
          margin-left: 0;
        }
        .ant-col-xl-push-18.ant-col-rtl {
          right: 75%;
          left: auto;
        }
        .ant-col-xl-pull-18.ant-col-rtl {
          right: auto;
          left: 75%;
        }
        .ant-col-xl-offset-18.ant-col-rtl {
          margin-right: 75%;
          margin-left: 0;
        }
        .ant-col-xl-push-19.ant-col-rtl {
          right: 79.16666667%;
          left: auto;
        }
        .ant-col-xl-pull-19.ant-col-rtl {
          right: auto;
          left: 79.16666667%;
        }
        .ant-col-xl-offset-19.ant-col-rtl {
          margin-right: 79.16666667%;
          margin-left: 0;
        }
        .ant-col-xl-push-20.ant-col-rtl {
          right: 83.33333333%;
          left: auto;
        }
        .ant-col-xl-pull-20.ant-col-rtl {
          right: auto;
          left: 83.33333333%;
        }
        .ant-col-xl-offset-20.ant-col-rtl {
          margin-right: 83.33333333%;
          margin-left: 0;
        }
        .ant-col-xl-push-21.ant-col-rtl {
          right: 87.5%;
          left: auto;
        }
        .ant-col-xl-pull-21.ant-col-rtl {
          right: auto;
          left: 87.5%;
        }
        .ant-col-xl-offset-21.ant-col-rtl {
          margin-right: 87.5%;
          margin-left: 0;
        }
        .ant-col-xl-push-22.ant-col-rtl {
          right: 91.66666667%;
          left: auto;
        }
        .ant-col-xl-pull-22.ant-col-rtl {
          right: auto;
          left: 91.66666667%;
        }
        .ant-col-xl-offset-22.ant-col-rtl {
          margin-right: 91.66666667%;
          margin-left: 0;
        }
        .ant-col-xl-push-23.ant-col-rtl {
          right: 95.83333333%;
          left: auto;
        }
        .ant-col-xl-pull-23.ant-col-rtl {
          right: auto;
          left: 95.83333333%;
        }
        .ant-col-xl-offset-23.ant-col-rtl {
          margin-right: 95.83333333%;
          margin-left: 0;
        }
        .ant-col-xl-push-24.ant-col-rtl {
          right: 100%;
          left: auto;
        }
        .ant-col-xl-pull-24.ant-col-rtl {
          right: auto;
          left: 100%;
        }
        .ant-col-xl-offset-24.ant-col-rtl {
          margin-right: 100%;
          margin-left: 0;
        }
      }
      @media (min-width: 1600px) {
        .ant-col-xxl-24 {
          display: block;
          flex: 0 0 100%;
          max-width: 100%;
        }
        .ant-col-xxl-push-24 {
          left: 100%;
        }
        .ant-col-xxl-pull-24 {
          right: 100%;
        }
        .ant-col-xxl-offset-24 {
          margin-left: 100%;
        }
        .ant-col-xxl-order-24 {
          order: 24;
        }
        .ant-col-xxl-23 {
          display: block;
          flex: 0 0 95.83333333%;
          max-width: 95.83333333%;
        }
        .ant-col-xxl-push-23 {
          left: 95.83333333%;
        }
        .ant-col-xxl-pull-23 {
          right: 95.83333333%;
        }
        .ant-col-xxl-offset-23 {
          margin-left: 95.83333333%;
        }
        .ant-col-xxl-order-23 {
          order: 23;
        }
        .ant-col-xxl-22 {
          display: block;
          flex: 0 0 91.66666667%;
          max-width: 91.66666667%;
        }
        .ant-col-xxl-push-22 {
          left: 91.66666667%;
        }
        .ant-col-xxl-pull-22 {
          right: 91.66666667%;
        }
        .ant-col-xxl-offset-22 {
          margin-left: 91.66666667%;
        }
        .ant-col-xxl-order-22 {
          order: 22;
        }
        .ant-col-xxl-21 {
          display: block;
          flex: 0 0 87.5%;
          max-width: 87.5%;
        }
        .ant-col-xxl-push-21 {
          left: 87.5%;
        }
        .ant-col-xxl-pull-21 {
          right: 87.5%;
        }
        .ant-col-xxl-offset-21 {
          margin-left: 87.5%;
        }
        .ant-col-xxl-order-21 {
          order: 21;
        }
        .ant-col-xxl-20 {
          display: block;
          flex: 0 0 83.33333333%;
          max-width: 83.33333333%;
        }
        .ant-col-xxl-push-20 {
          left: 83.33333333%;
        }
        .ant-col-xxl-pull-20 {
          right: 83.33333333%;
        }
        .ant-col-xxl-offset-20 {
          margin-left: 83.33333333%;
        }
        .ant-col-xxl-order-20 {
          order: 20;
        }
        .ant-col-xxl-19 {
          display: block;
          flex: 0 0 79.16666667%;
          max-width: 79.16666667%;
        }
        .ant-col-xxl-push-19 {
          left: 79.16666667%;
        }
        .ant-col-xxl-pull-19 {
          right: 79.16666667%;
        }
        .ant-col-xxl-offset-19 {
          margin-left: 79.16666667%;
        }
        .ant-col-xxl-order-19 {
          order: 19;
        }
        .ant-col-xxl-18 {
          display: block;
          flex: 0 0 75%;
          max-width: 75%;
        }
        .ant-col-xxl-push-18 {
          left: 75%;
        }
        .ant-col-xxl-pull-18 {
          right: 75%;
        }
        .ant-col-xxl-offset-18 {
          margin-left: 75%;
        }
        .ant-col-xxl-order-18 {
          order: 18;
        }
        .ant-col-xxl-17 {
          display: block;
          flex: 0 0 70.83333333%;
          max-width: 70.83333333%;
        }
        .ant-col-xxl-push-17 {
          left: 70.83333333%;
        }
        .ant-col-xxl-pull-17 {
          right: 70.83333333%;
        }
        .ant-col-xxl-offset-17 {
          margin-left: 70.83333333%;
        }
        .ant-col-xxl-order-17 {
          order: 17;
        }
        .ant-col-xxl-16 {
          display: block;
          flex: 0 0 66.66666667%;
          max-width: 66.66666667%;
        }
        .ant-col-xxl-push-16 {
          left: 66.66666667%;
        }
        .ant-col-xxl-pull-16 {
          right: 66.66666667%;
        }
        .ant-col-xxl-offset-16 {
          margin-left: 66.66666667%;
        }
        .ant-col-xxl-order-16 {
          order: 16;
        }
        .ant-col-xxl-15 {
          display: block;
          flex: 0 0 62.5%;
          max-width: 62.5%;
        }
        .ant-col-xxl-push-15 {
          left: 62.5%;
        }
        .ant-col-xxl-pull-15 {
          right: 62.5%;
        }
        .ant-col-xxl-offset-15 {
          margin-left: 62.5%;
        }
        .ant-col-xxl-order-15 {
          order: 15;
        }
        .ant-col-xxl-14 {
          display: block;
          flex: 0 0 58.33333333%;
          max-width: 58.33333333%;
        }
        .ant-col-xxl-push-14 {
          left: 58.33333333%;
        }
        .ant-col-xxl-pull-14 {
          right: 58.33333333%;
        }
        .ant-col-xxl-offset-14 {
          margin-left: 58.33333333%;
        }
        .ant-col-xxl-order-14 {
          order: 14;
        }
        .ant-col-xxl-13 {
          display: block;
          flex: 0 0 54.16666667%;
          max-width: 54.16666667%;
        }
        .ant-col-xxl-push-13 {
          left: 54.16666667%;
        }
        .ant-col-xxl-pull-13 {
          right: 54.16666667%;
        }
        .ant-col-xxl-offset-13 {
          margin-left: 54.16666667%;
        }
        .ant-col-xxl-order-13 {
          order: 13;
        }
        .ant-col-xxl-12 {
          display: block;
          flex: 0 0 50%;
          max-width: 50%;
        }
        .ant-col-xxl-push-12 {
          left: 50%;
        }
        .ant-col-xxl-pull-12 {
          right: 50%;
        }
        .ant-col-xxl-offset-12 {
          margin-left: 50%;
        }
        .ant-col-xxl-order-12 {
          order: 12;
        }
        .ant-col-xxl-11 {
          display: block;
          flex: 0 0 45.83333333%;
          max-width: 45.83333333%;
        }
        .ant-col-xxl-push-11 {
          left: 45.83333333%;
        }
        .ant-col-xxl-pull-11 {
          right: 45.83333333%;
        }
        .ant-col-xxl-offset-11 {
          margin-left: 45.83333333%;
        }
        .ant-col-xxl-order-11 {
          order: 11;
        }
        .ant-col-xxl-10 {
          display: block;
          flex: 0 0 41.66666667%;
          max-width: 41.66666667%;
        }
        .ant-col-xxl-push-10 {
          left: 41.66666667%;
        }
        .ant-col-xxl-pull-10 {
          right: 41.66666667%;
        }
        .ant-col-xxl-offset-10 {
          margin-left: 41.66666667%;
        }
        .ant-col-xxl-order-10 {
          order: 10;
        }
        .ant-col-xxl-9 {
          display: block;
          flex: 0 0 37.5%;
          max-width: 37.5%;
        }
        .ant-col-xxl-push-9 {
          left: 37.5%;
        }
        .ant-col-xxl-pull-9 {
          right: 37.5%;
        }
        .ant-col-xxl-offset-9 {
          margin-left: 37.5%;
        }
        .ant-col-xxl-order-9 {
          order: 9;
        }
        .ant-col-xxl-8 {
          display: block;
          flex: 0 0 33.33333333%;
          max-width: 33.33333333%;
        }
        .ant-col-xxl-push-8 {
          left: 33.33333333%;
        }
        .ant-col-xxl-pull-8 {
          right: 33.33333333%;
        }
        .ant-col-xxl-offset-8 {
          margin-left: 33.33333333%;
        }
        .ant-col-xxl-order-8 {
          order: 8;
        }
        .ant-col-xxl-7 {
          display: block;
          flex: 0 0 29.16666667%;
          max-width: 29.16666667%;
        }
        .ant-col-xxl-push-7 {
          left: 29.16666667%;
        }
        .ant-col-xxl-pull-7 {
          right: 29.16666667%;
        }
        .ant-col-xxl-offset-7 {
          margin-left: 29.16666667%;
        }
        .ant-col-xxl-order-7 {
          order: 7;
        }
        .ant-col-xxl-6 {
          display: block;
          flex: 0 0 25%;
          max-width: 25%;
        }
        .ant-col-xxl-push-6 {
          left: 25%;
        }
        .ant-col-xxl-pull-6 {
          right: 25%;
        }
        .ant-col-xxl-offset-6 {
          margin-left: 25%;
        }
        .ant-col-xxl-order-6 {
          order: 6;
        }
        .ant-col-xxl-5 {
          display: block;
          flex: 0 0 20.83333333%;
          max-width: 20.83333333%;
        }
        .ant-col-xxl-push-5 {
          left: 20.83333333%;
        }
        .ant-col-xxl-pull-5 {
          right: 20.83333333%;
        }
        .ant-col-xxl-offset-5 {
          margin-left: 20.83333333%;
        }
        .ant-col-xxl-order-5 {
          order: 5;
        }
        .ant-col-xxl-4 {
          display: block;
          flex: 0 0 16.66666667%;
          max-width: 16.66666667%;
        }
        .ant-col-xxl-push-4 {
          left: 16.66666667%;
        }
        .ant-col-xxl-pull-4 {
          right: 16.66666667%;
        }
        .ant-col-xxl-offset-4 {
          margin-left: 16.66666667%;
        }
        .ant-col-xxl-order-4 {
          order: 4;
        }
        .ant-col-xxl-3 {
          display: block;
          flex: 0 0 12.5%;
          max-width: 12.5%;
        }
        .ant-col-xxl-push-3 {
          left: 12.5%;
        }
        .ant-col-xxl-pull-3 {
          right: 12.5%;
        }
        .ant-col-xxl-offset-3 {
          margin-left: 12.5%;
        }
        .ant-col-xxl-order-3 {
          order: 3;
        }
        .ant-col-xxl-2 {
          display: block;
          flex: 0 0 8.33333333%;
          max-width: 8.33333333%;
        }
        .ant-col-xxl-push-2 {
          left: 8.33333333%;
        }
        .ant-col-xxl-pull-2 {
          right: 8.33333333%;
        }
        .ant-col-xxl-offset-2 {
          margin-left: 8.33333333%;
        }
        .ant-col-xxl-order-2 {
          order: 2;
        }
        .ant-col-xxl-1 {
          display: block;
          flex: 0 0 4.16666667%;
          max-width: 4.16666667%;
        }
        .ant-col-xxl-push-1 {
          left: 4.16666667%;
        }
        .ant-col-xxl-pull-1 {
          right: 4.16666667%;
        }
        .ant-col-xxl-offset-1 {
          margin-left: 4.16666667%;
        }
        .ant-col-xxl-order-1 {
          order: 1;
        }
        .ant-col-xxl-0 {
          display: none;
        }
        .ant-col-push-0 {
          left: auto;
        }
        .ant-col-pull-0 {
          right: auto;
        }
        .ant-col-xxl-push-0 {
          left: auto;
        }
        .ant-col-xxl-pull-0 {
          right: auto;
        }
        .ant-col-xxl-offset-0 {
          margin-left: 0;
        }
        .ant-col-xxl-order-0 {
          order: 0;
        }
        .ant-col-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-xxl-push-0.ant-col-rtl {
          right: auto;
        }
        .ant-col-xxl-pull-0.ant-col-rtl {
          left: auto;
        }
        .ant-col-xxl-offset-0.ant-col-rtl {
          margin-right: 0;
        }
        .ant-col-xxl-push-1.ant-col-rtl {
          right: 4.16666667%;
          left: auto;
        }
        .ant-col-xxl-pull-1.ant-col-rtl {
          right: auto;
          left: 4.16666667%;
        }
        .ant-col-xxl-offset-1.ant-col-rtl {
          margin-right: 4.16666667%;
          margin-left: 0;
        }
        .ant-col-xxl-push-2.ant-col-rtl {
          right: 8.33333333%;
          left: auto;
        }
        .ant-col-xxl-pull-2.ant-col-rtl {
          right: auto;
          left: 8.33333333%;
        }
        .ant-col-xxl-offset-2.ant-col-rtl {
          margin-right: 8.33333333%;
          margin-left: 0;
        }
        .ant-col-xxl-push-3.ant-col-rtl {
          right: 12.5%;
          left: auto;
        }
        .ant-col-xxl-pull-3.ant-col-rtl {
          right: auto;
          left: 12.5%;
        }
        .ant-col-xxl-offset-3.ant-col-rtl {
          margin-right: 12.5%;
          margin-left: 0;
        }
        .ant-col-xxl-push-4.ant-col-rtl {
          right: 16.66666667%;
          left: auto;
        }
        .ant-col-xxl-pull-4.ant-col-rtl {
          right: auto;
          left: 16.66666667%;
        }
        .ant-col-xxl-offset-4.ant-col-rtl {
          margin-right: 16.66666667%;
          margin-left: 0;
        }
        .ant-col-xxl-push-5.ant-col-rtl {
          right: 20.83333333%;
          left: auto;
        }
        .ant-col-xxl-pull-5.ant-col-rtl {
          right: auto;
          left: 20.83333333%;
        }
        .ant-col-xxl-offset-5.ant-col-rtl {
          margin-right: 20.83333333%;
          margin-left: 0;
        }
        .ant-col-xxl-push-6.ant-col-rtl {
          right: 25%;
          left: auto;
        }
        .ant-col-xxl-pull-6.ant-col-rtl {
          right: auto;
          left: 25%;
        }
        .ant-col-xxl-offset-6.ant-col-rtl {
          margin-right: 25%;
          margin-left: 0;
        }
        .ant-col-xxl-push-7.ant-col-rtl {
          right: 29.16666667%;
          left: auto;
        }
        .ant-col-xxl-pull-7.ant-col-rtl {
          right: auto;
          left: 29.16666667%;
        }
        .ant-col-xxl-offset-7.ant-col-rtl {
          margin-right: 29.16666667%;
          margin-left: 0;
        }
        .ant-col-xxl-push-8.ant-col-rtl {
          right: 33.33333333%;
          left: auto;
        }
        .ant-col-xxl-pull-8.ant-col-rtl {
          right: auto;
          left: 33.33333333%;
        }
        .ant-col-xxl-offset-8.ant-col-rtl {
          margin-right: 33.33333333%;
          margin-left: 0;
        }
        .ant-col-xxl-push-9.ant-col-rtl {
          right: 37.5%;
          left: auto;
        }
        .ant-col-xxl-pull-9.ant-col-rtl {
          right: auto;
          left: 37.5%;
        }
        .ant-col-xxl-offset-9.ant-col-rtl {
          margin-right: 37.5%;
          margin-left: 0;
        }
        .ant-col-xxl-push-10.ant-col-rtl {
          right: 41.66666667%;
          left: auto;
        }
        .ant-col-xxl-pull-10.ant-col-rtl {
          right: auto;
          left: 41.66666667%;
        }
        .ant-col-xxl-offset-10.ant-col-rtl {
          margin-right: 41.66666667%;
          margin-left: 0;
        }
        .ant-col-xxl-push-11.ant-col-rtl {
          right: 45.83333333%;
          left: auto;
        }
        .ant-col-xxl-pull-11.ant-col-rtl {
          right: auto;
          left: 45.83333333%;
        }
        .ant-col-xxl-offset-11.ant-col-rtl {
          margin-right: 45.83333333%;
          margin-left: 0;
        }
        .ant-col-xxl-push-12.ant-col-rtl {
          right: 50%;
          left: auto;
        }
        .ant-col-xxl-pull-12.ant-col-rtl {
          right: auto;
          left: 50%;
        }
        .ant-col-xxl-offset-12.ant-col-rtl {
          margin-right: 50%;
          margin-left: 0;
        }
        .ant-col-xxl-push-13.ant-col-rtl {
          right: 54.16666667%;
          left: auto;
        }
        .ant-col-xxl-pull-13.ant-col-rtl {
          right: auto;
          left: 54.16666667%;
        }
        .ant-col-xxl-offset-13.ant-col-rtl {
          margin-right: 54.16666667%;
          margin-left: 0;
        }
        .ant-col-xxl-push-14.ant-col-rtl {
          right: 58.33333333%;
          left: auto;
        }
        .ant-col-xxl-pull-14.ant-col-rtl {
          right: auto;
          left: 58.33333333%;
        }
        .ant-col-xxl-offset-14.ant-col-rtl {
          margin-right: 58.33333333%;
          margin-left: 0;
        }
        .ant-col-xxl-push-15.ant-col-rtl {
          right: 62.5%;
          left: auto;
        }
        .ant-col-xxl-pull-15.ant-col-rtl {
          right: auto;
          left: 62.5%;
        }
        .ant-col-xxl-offset-15.ant-col-rtl {
          margin-right: 62.5%;
          margin-left: 0;
        }
        .ant-col-xxl-push-16.ant-col-rtl {
          right: 66.66666667%;
          left: auto;
        }
        .ant-col-xxl-pull-16.ant-col-rtl {
          right: auto;
          left: 66.66666667%;
        }
        .ant-col-xxl-offset-16.ant-col-rtl {
          margin-right: 66.66666667%;
          margin-left: 0;
        }
        .ant-col-xxl-push-17.ant-col-rtl {
          right: 70.83333333%;
          left: auto;
        }
        .ant-col-xxl-pull-17.ant-col-rtl {
          right: auto;
          left: 70.83333333%;
        }
        .ant-col-xxl-offset-17.ant-col-rtl {
          margin-right: 70.83333333%;
          margin-left: 0;
        }
        .ant-col-xxl-push-18.ant-col-rtl {
          right: 75%;
          left: auto;
        }
        .ant-col-xxl-pull-18.ant-col-rtl {
          right: auto;
          left: 75%;
        }
        .ant-col-xxl-offset-18.ant-col-rtl {
          margin-right: 75%;
          margin-left: 0;
        }
        .ant-col-xxl-push-19.ant-col-rtl {
          right: 79.16666667%;
          left: auto;
        }
        .ant-col-xxl-pull-19.ant-col-rtl {
          right: auto;
          left: 79.16666667%;
        }
        .ant-col-xxl-offset-19.ant-col-rtl {
          margin-right: 79.16666667%;
          margin-left: 0;
        }
        .ant-col-xxl-push-20.ant-col-rtl {
          right: 83.33333333%;
          left: auto;
        }
        .ant-col-xxl-pull-20.ant-col-rtl {
          right: auto;
          left: 83.33333333%;
        }
        .ant-col-xxl-offset-20.ant-col-rtl {
          margin-right: 83.33333333%;
          margin-left: 0;
        }
        .ant-col-xxl-push-21.ant-col-rtl {
          right: 87.5%;
          left: auto;
        }
        .ant-col-xxl-pull-21.ant-col-rtl {
          right: auto;
          left: 87.5%;
        }
        .ant-col-xxl-offset-21.ant-col-rtl {
          margin-right: 87.5%;
          margin-left: 0;
        }
        .ant-col-xxl-push-22.ant-col-rtl {
          right: 91.66666667%;
          left: auto;
        }
        .ant-col-xxl-pull-22.ant-col-rtl {
          right: auto;
          left: 91.66666667%;
        }
        .ant-col-xxl-offset-22.ant-col-rtl {
          margin-right: 91.66666667%;
          margin-left: 0;
        }
        .ant-col-xxl-push-23.ant-col-rtl {
          right: 95.83333333%;
          left: auto;
        }
        .ant-col-xxl-pull-23.ant-col-rtl {
          right: auto;
          left: 95.83333333%;
        }
        .ant-col-xxl-offset-23.ant-col-rtl {
          margin-right: 95.83333333%;
          margin-left: 0;
        }
        .ant-col-xxl-push-24.ant-col-rtl {
          right: 100%;
          left: auto;
        }
        .ant-col-xxl-pull-24.ant-col-rtl {
          right: auto;
          left: 100%;
        }
        .ant-col-xxl-offset-24.ant-col-rtl {
          margin-right: 100%;
          margin-left: 0;
        }
      }
      .ant-row-rtl {
        direction: rtl;
      }
    
      .ant-image {
        position: relative;
        display: inline-block;
      }
      .ant-image-img {
        width: 100%;
        height: auto;
        vertical-align: middle;
      }
      .ant-image-img-placeholder {
        background-color: #f5f5f5;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIuNzY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xNzV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 30%;
      }
      .ant-image-mask {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: rgba(0, 0, 0, 0.5);
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s;
      }
      .ant-image-mask-info {
        padding: 0 4px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
      }
      .ant-image-mask-info .anticon {
        -webkit-margin-end: 4px;
        margin-inline-end: 4px;
      }
      .ant-image-mask:hover {
        opacity: 1;
      }
      .ant-image-placeholder {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
      }
      .ant-image-preview {
        pointer-events: none;
        height: 100%;
        text-align: center;
      }
      .ant-image-preview.ant-zoom-enter,
      .ant-image-preview.ant-zoom-appear {
        transform: none;
        opacity: 0;
        animation-duration: 0.3s;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }
      .ant-image-preview-mask {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1000;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.45);
      }
      .ant-image-preview-mask-hidden {
        display: none;
      }
      .ant-image-preview-wrap {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: auto;
        outline: 0;
      }
      .ant-image-preview-body {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
      }
      .ant-image-preview-img {
        max-width: 100%;
        max-height: 100%;
        vertical-align: middle;
        transform: scale3d(1, 1, 1);
        cursor: grab;
        transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: auto;
      }
      .ant-image-preview-img-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
      }
      .ant-image-preview-img-wrapper::before {
        display: inline-block;
        width: 1px;
        height: 50%;
        margin-right: -1px;
        content: "";
      }
      .ant-image-preview-moving .ant-image-preview-img {
        cursor: grabbing;
      }
      .ant-image-preview-moving .ant-image-preview-img-wrapper {
        transition-duration: 0s;
      }
      .ant-image-preview-wrap {
        z-index: 1080;
      }
      .ant-image-preview-operations-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1081;
        width: 100%;
      }
      .ant-image-preview-operations {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        font-feature-settings: "tnum";
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        color: rgba(255, 255, 255, 0.85);
        list-style: none;
        background: rgba(0, 0, 0, 0.1);
        pointer-events: auto;
      }
      .ant-image-preview-operations-operation {
        margin-left: 12px;
        padding: 12px;
        cursor: pointer;
        transition: all 0.3s;
      }
      .ant-image-preview-operations-operation:hover {
        background: rgba(0, 0, 0, 0.2);
      }
      .ant-image-preview-operations-operation-disabled {
        color: rgba(255, 255, 255, 0.25);
        pointer-events: none;
      }
      .ant-image-preview-operations-operation:last-of-type {
        margin-left: 0;
      }
      .ant-image-preview-operations-progress {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
      .ant-image-preview-operations-icon {
        font-size: 18px;
      }
      .ant-image-preview-switch-left,
      .ant-image-preview-switch-right {
        position: fixed;
        top: 50%;
        right: 8px;
        z-index: 1081;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        transition: all 0.3s;
        pointer-events: auto;
      }
      .ant-image-preview-switch-left:hover,
      .ant-image-preview-switch-right:hover {
        background: rgba(0, 0, 0, 0.2);
      }
      .ant-image-preview-switch-left-disabled,
      .ant-image-preview-switch-right-disabled,
      .ant-image-preview-switch-left-disabled:hover,
      .ant-image-preview-switch-right-disabled:hover {
        color: rgba(255, 255, 255, 0.25);
        background: rgba(0, 0, 0, 0.1);
        cursor: not-allowed;
      }
      .ant-image-preview-switch-left-disabled > .anticon,
      .ant-image-preview-switch-right-disabled > .anticon,
      .ant-image-preview-switch-left-disabled:hover > .anticon,
      .ant-image-preview-switch-right-disabled:hover > .anticon {
        cursor: not-allowed;
      }
      .ant-image-preview-switch-left > .anticon,
      .ant-image-preview-switch-right > .anticon {
        font-size: 18px;
      }
      .ant-image-preview-switch-left {
        left: 8px;
      }
      .ant-image-preview-switch-right {
        right: 8px;
      }
   
      .ant-list {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: relative;
      }
      .ant-list * {
        outline: none;
      }
      .ant-list-pagination {
        margin-top: 24px;
        text-align: right;
      }
      .ant-list-pagination .ant-pagination-options {
        text-align: left;
      }
      .ant-list-more {
        margin-top: 12px;
        text-align: center;
      }
      .ant-list-more button {
        padding-right: 32px;
        padding-left: 32px;
      }
      .ant-list-spin {
        min-height: 40px;
        text-align: center;
      }
      .ant-list-empty-text {
        padding: 16px;
        color: rgba(0, 0, 0, 0.25);
        font-size: 14px;
        text-align: center;
      }
      .ant-list-items {
        margin: 0;
        padding: 0;
        list-style: none;
      }
      .ant-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        color: rgba(0, 0, 0, 0.85);
      }
      .ant-list-item-meta {
        display: flex;
        flex: 1;
        align-items: flex-start;
        max-width: 100%;
      }
      .ant-list-item-meta-avatar {
        margin-right: 16px;
      }
      .ant-list-item-meta-content {
        flex: 1 0;
        width: 0;
        color: rgba(0, 0, 0, 0.85);
      }
      .ant-list-item-meta-title {
        margin-bottom: 4px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        line-height: 1.5715;
      }
      .ant-list-item-meta-title > a {
        color: rgba(0, 0, 0, 0.85);
        transition: all 0.3s;
      }
      .ant-list-item-meta-title > a:hover {
        color: #1890ff;
      }
      .ant-list-item-meta-description {
        color: rgba(0, 0, 0, 0.45);
        font-size: 14px;
        line-height: 1.5715;
      }
      .ant-list-item-action {
        flex: 0 0 auto;
        margin-left: 48px;
        padding: 0;
        font-size: 0;
        list-style: none;
      }
      .ant-list-item-action > li {
        position: relative;
        display: inline-block;
        padding: 0 8px;
        color: rgba(0, 0, 0, 0.45);
        font-size: 14px;
        line-height: 1.5715;
        text-align: center;
      }
      .ant-list-item-action > li:first-child {
        padding-left: 0;
      }
      .ant-list-item-action-split {
        position: absolute;
        top: 50%;
        right: 0;
        width: 1px;
        height: 14px;
        margin-top: -7px;
        background-color: #f0f0f0;
      }
      .ant-list-header {
        background: rgba(0, 0, 0, 0);
      }
      .ant-list-footer {
        background: rgba(0, 0, 0, 0);
      }
      .ant-list-header,
      .ant-list-footer {
        padding-top: 12px;
        padding-bottom: 12px;
      }
      .ant-list-empty {
        padding: 16px 0;
        color: rgba(0, 0, 0, 0.45);
        font-size: 12px;
        text-align: center;
      }
      .ant-list-split .ant-list-item {
        border-bottom: 1px solid #f0f0f0;
      }
      .ant-list-split .ant-list-item:last-child {
        border-bottom: none;
      }
      .ant-list-split .ant-list-header {
        border-bottom: 1px solid #f0f0f0;
      }
      .ant-list-split.ant-list-empty .ant-list-footer {
        border-top: 1px solid #f0f0f0;
      }
      .ant-list-loading .ant-list-spin-nested-loading {
        min-height: 32px;
      }
      .ant-list-split.ant-list-something-after-last-item
        .ant-spin-container
        > .ant-list-items
        > .ant-list-item:last-child {
        border-bottom: 1px solid #f0f0f0;
      }
      .ant-list-lg .ant-list-item {
        padding: 16px 24px;
      }
      .ant-list-sm .ant-list-item {
        padding: 8px 16px;
      }
      .ant-list-vertical .ant-list-item {
        align-items: initial;
      }
      .ant-list-vertical .ant-list-item-main {
        display: block;
        flex: 1;
      }
      .ant-list-vertical .ant-list-item-extra {
        margin-left: 40px;
      }
      .ant-list-vertical .ant-list-item-meta {
        margin-bottom: 16px;
      }
      .ant-list-vertical .ant-list-item-meta-title {
        margin-bottom: 12px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 16px;
        line-height: 24px;
      }
      .ant-list-vertical .ant-list-item-action {
        margin-top: 16px;
        margin-left: auto;
      }
      .ant-list-vertical .ant-list-item-action > li {
        padding: 0 16px;
      }
      .ant-list-vertical .ant-list-item-action > li:first-child {
        padding-left: 0;
      }
      .ant-list-grid .ant-col > .ant-list-item {
        display: block;
        max-width: 100%;
        margin-bottom: 16px;
        padding-top: 0;
        padding-bottom: 0;
        border-bottom: none;
      }
      .ant-list-item-no-flex {
        display: block;
      }
      .ant-list:not(.ant-list-vertical)
        .ant-list-item-no-flex
        .ant-list-item-action {
        float: right;
      }
      .ant-list-bordered {
        border: 1px solid #d9d9d9;
        border-radius: 2px;
      }
      .ant-list-bordered .ant-list-header {
        padding-right: 24px;
        padding-left: 24px;
      }
      .ant-list-bordered .ant-list-footer {
        padding-right: 24px;
        padding-left: 24px;
      }
      .ant-list-bordered .ant-list-item {
        padding-right: 24px;
        padding-left: 24px;
      }
      .ant-list-bordered .ant-list-pagination {
        margin: 16px 24px;
      }
      .ant-list-bordered.ant-list-sm .ant-list-item {
        padding: 8px 16px;
      }
      .ant-list-bordered.ant-list-sm .ant-list-header,
      .ant-list-bordered.ant-list-sm .ant-list-footer {
        padding: 8px 16px;
      }
      .ant-list-bordered.ant-list-lg .ant-list-item {
        padding: 16px 24px;
      }
      .ant-list-bordered.ant-list-lg .ant-list-header,
      .ant-list-bordered.ant-list-lg .ant-list-footer {
        padding: 16px 24px;
      }
      @media screen and (max-width: 768px) {
        .ant-list-item-action {
          margin-left: 24px;
        }
        .ant-list-vertical .ant-list-item-extra {
          margin-left: 24px;
        }
      }
      @media screen and (max-width: 576px) {
        .ant-list-item {
          flex-wrap: wrap;
        }
        .ant-list-item-action {
          margin-left: 12px;
        }
        .ant-list-vertical .ant-list-item {
          flex-wrap: wrap-reverse;
        }
        .ant-list-vertical .ant-list-item-main {
          min-width: 220px;
        }
        .ant-list-vertical .ant-list-item-extra {
          margin: auto auto 16px;
        }
      }
      .ant-list-rtl {
        direction: rtl;
        text-align: right;
      }
      .ant-list-rtl .ReactVirtualized__List .ant-list-item {
        direction: rtl;
      }
      .ant-list-rtl .ant-list-pagination {
        text-align: left;
      }
      .ant-list-rtl .ant-list-item-meta-avatar {
        margin-right: 0;
        margin-left: 16px;
      }
      .ant-list-rtl .ant-list-item-action {
        margin-right: 48px;
        margin-left: 0;
      }
      .ant-list.ant-list-rtl .ant-list-item-action > li:first-child {
        padding-right: 0;
        padding-left: 16px;
      }
      .ant-list-rtl .ant-list-item-action-split {
        right: auto;
        left: 0;
      }
      .ant-list-rtl.ant-list-vertical .ant-list-item-extra {
        margin-right: 40px;
        margin-left: 0;
      }
      .ant-list-rtl.ant-list-vertical .ant-list-item-action {
        margin-right: auto;
      }
      .ant-list-rtl .ant-list-vertical .ant-list-item-action > li:first-child {
        padding-right: 0;
        padding-left: 16px;
      }
      .ant-list-rtl
        .ant-list:not(.ant-list-vertical)
        .ant-list-item-no-flex
        .ant-list-item-action {
        float: left;
      }
      @media screen and (max-width: 768px) {
        .ant-list-rtl .ant-list-item-action {
          margin-right: 24px;
          margin-left: 0;
        }
        .ant-list-rtl .ant-list-vertical .ant-list-item-extra {
          margin-right: 24px;
          margin-left: 0;
        }
      }
      @media screen and (max-width: 576px) {
        .ant-list-rtl .ant-list-item-action {
          margin-right: 22px;
          margin-left: 0;
        }
        .ant-list-rtl.ant-list-vertical .ant-list-item-extra {
          margin: auto auto 16px;
        }
      }

      .ant-message {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: fixed;
        top: 8px;
        left: 0;
        z-index: 1010;
        width: 100%;
        pointer-events: none;
      }
      .ant-message-notice {
        padding: 8px;
        text-align: center;
      }
      .ant-message-notice-content {
        display: inline-block;
        padding: 10px 16px;
        background: #fff;
        border-radius: 2px;
        box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
          0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
        pointer-events: all;
      }
      .ant-message-success .anticon {
        color: #52c41a;
      }
      .ant-message-error .anticon {
        color: #ff4d4f;
      }
      .ant-message-warning .anticon {
        color: #faad14;
      }
      .ant-message-info .anticon,
      .ant-message-loading .anticon {
        color: #1890ff;
      }
      .ant-message .anticon {
        position: relative;
        top: 1px;
        margin-right: 8px;
        font-size: 16px;
      }
      .ant-message-notice.ant-move-up-leave.ant-move-up-leave-active {
        animation-name: MessageMoveOut;
        animation-duration: 0.3s;
      }
      @keyframes MessageMoveOut {
        0% {
          max-height: 150px;
          padding: 8px;
          opacity: 1;
        }
        100% {
          max-height: 0;
          padding: 0;
          opacity: 0;
        }
      }
      .ant-message-rtl {
        direction: rtl;
      }
      .ant-message-rtl span {
        direction: rtl;
      }
      .ant-message-rtl .anticon {
        margin-right: 0;
        margin-left: 8px;
      }
  
      .ant-progress {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        display: inline-block;
      }
      .ant-progress-line {
        position: relative;
        width: 100%;
        font-size: 14px;
      }
      .ant-progress-steps {
        display: inline-block;
      }
      .ant-progress-steps-outer {
        display: flex;
        flex-direction: row;
        align-items: center;
      }
      .ant-progress-steps-item {
        flex-shrink: 0;
        min-width: 2px;
        margin-right: 2px;
        background: #f3f3f3;
        transition: all 0.3s;
      }
      .ant-progress-steps-item-active {
        background: #1890ff;
      }
      .ant-progress-small.ant-progress-line,
      .ant-progress-small.ant-progress-line .ant-progress-text .anticon {
        font-size: 12px;
      }
      .ant-progress-outer {
        display: inline-block;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
      }
      .ant-progress-show-info .ant-progress-outer {
        margin-right: calc(-2em - 8px);
        padding-right: calc(2em + 8px);
      }
      .ant-progress-inner {
        position: relative;
        display: inline-block;
        width: 100%;
        overflow: hidden;
        vertical-align: middle;
        background-color: #f5f5f5;
        border-radius: 100px;
      }
      .ant-progress-circle-trail {
        stroke: #f5f5f5;
      }
      .ant-progress-circle-path {
        animation: ant-progress-appear 0.3s;
      }
      .ant-progress-inner:not(.ant-progress-circle-gradient)
        .ant-progress-circle-path {
        stroke: #1890ff;
      }
      .ant-progress-success-bg,
      .ant-progress-bg {
        position: relative;
        background-color: #1890ff;
        border-radius: 100px;
        transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
      }
      .ant-progress-success-bg {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #52c41a;
      }
      .ant-progress-text {
        display: inline-block;
        width: 2em;
        margin-left: 8px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 1em;
        line-height: 1;
        white-space: nowrap;
        text-align: left;
        vertical-align: middle;
        word-break: normal;
      }
      .ant-progress-text .anticon {
        font-size: 14px;
      }
      .ant-progress-status-active .ant-progress-bg::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #fff;
        border-radius: 10px;
        opacity: 0;
        animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1)
          infinite;
        content: "";
      }
      .ant-progress-status-exception .ant-progress-bg {
        background-color: #ff4d4f;
      }
      .ant-progress-status-exception .ant-progress-text {
        color: #ff4d4f;
      }
      .ant-progress-status-exception
        .ant-progress-inner:not(.ant-progress-circle-gradient)
        .ant-progress-circle-path {
        stroke: #ff4d4f;
      }
      .ant-progress-status-success .ant-progress-bg {
        background-color: #52c41a;
      }
      .ant-progress-status-success .ant-progress-text {
        color: #52c41a;
      }
      .ant-progress-status-success
        .ant-progress-inner:not(.ant-progress-circle-gradient)
        .ant-progress-circle-path {
        stroke: #52c41a;
      }
      .ant-progress-circle .ant-progress-inner {
        position: relative;
        line-height: 1;
        background-color: rgba(0, 0, 0, 0);
      }
      .ant-progress-circle .ant-progress-text {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 1em;
        line-height: 1;
        white-space: normal;
        text-align: center;
        transform: translate(-50%, -50%);
      }
      .ant-progress-circle .ant-progress-text .anticon {
        font-size: 1.16666667em;
      }
      .ant-progress-circle.ant-progress-status-exception .ant-progress-text {
        color: #ff4d4f;
      }
      .ant-progress-circle.ant-progress-status-success .ant-progress-text {
        color: #52c41a;
      }
      @keyframes ant-progress-active {
        0% {
          transform: translateX(-100%) scaleX(0);
          opacity: 0.1;
        }
        20% {
          transform: translateX(-100%) scaleX(0);
          opacity: 0.5;
        }
        100% {
          transform: translateX(0) scaleX(1);
          opacity: 0;
        }
      }
      .ant-progress-rtl {
        direction: rtl;
      }
      .ant-progress-rtl.ant-progress-show-info .ant-progress-outer {
        margin-right: 0;
        margin-left: calc(-2em - 8px);
        padding-right: 0;
        padding-left: calc(2em + 8px);
      }
      .ant-progress-rtl .ant-progress-success-bg {
        right: 0;
        left: auto;
      }
      .ant-progress-rtl.ant-progress-line .ant-progress-text,
      .ant-progress-rtl.ant-progress-steps .ant-progress-text {
        margin-right: 8px;
        margin-left: 0;
        text-align: right;
      }
   
      .ant-radio-group {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        display: inline-block;
        font-size: 0;
      }
      .ant-radio-group .ant-badge-count {
        z-index: 1;
      }
      .ant-radio-group
        > .ant-badge:not(:first-child)
        > .ant-radio-button-wrapper {
        border-left: none;
      }
      .ant-radio-wrapper {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: relative;
        display: inline-flex;
        align-items: baseline;
        margin-right: 8px;
        cursor: pointer;
      }
      .ant-radio-wrapper-disabled {
        cursor: not-allowed;
      }
      .ant-radio-wrapper::after {
        display: inline-block;
        width: 0;
        overflow: hidden;
        content: " ";
      }
      .ant-radio-wrapper.ant-radio-wrapper-in-form-item input[type="radio"] {
        width: 14px;
        height: 14px;
      }
      .ant-radio {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: relative;
        top: 0.2em;
        display: inline-block;
        outline: none;
        cursor: pointer;
      }
      .ant-radio-wrapper:hover .ant-radio,
      .ant-radio:hover .ant-radio-inner,
      .ant-radio-input:focus + .ant-radio-inner {
        border-color: #1890ff;
      }
      .ant-radio-input:focus + .ant-radio-inner {
        box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.12);
      }
      .ant-radio-checked::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid #1890ff;
        border-radius: 50%;
        visibility: hidden;
        animation: antRadioEffect 0.36s ease-in-out;
        animation-fill-mode: both;
        content: "";
      }
      .ant-radio:hover::after,
      .ant-radio-wrapper:hover .ant-radio::after {
        visibility: visible;
      }
      .ant-radio-inner {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        width: 16px;
        height: 16px;
        background-color: #fff;
        border-color: #d9d9d9;
        border-style: solid;
        border-width: 1px;
        border-radius: 50%;
        transition: all 0.3s;
      }
      .ant-radio-inner::after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 16px;
        height: 16px;
        margin-top: -8px;
        margin-left: -8px;
        background-color: #1890ff;
        border-top: 0;
        border-left: 0;
        border-radius: 16px;
        transform: scale(0);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
        content: " ";
      }
      .ant-radio-input {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        cursor: pointer;
        opacity: 0;
      }
      .ant-radio.ant-radio-disabled .ant-radio-inner {
        border-color: #d9d9d9;
      }
      .ant-radio-checked .ant-radio-inner {
        border-color: #1890ff;
      }
      .ant-radio-checked .ant-radio-inner::after {
        transform: scale(0.5);
        opacity: 1;
        transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
      }
      .ant-radio-disabled {
        cursor: not-allowed;
      }
      .ant-radio-disabled .ant-radio-inner {
        background-color: #f5f5f5;
        cursor: not-allowed;
      }
      .ant-radio-disabled .ant-radio-inner::after {
        background-color: rgba(0, 0, 0, 0.2);
      }
      .ant-radio-disabled .ant-radio-input {
        cursor: not-allowed;
      }
      .ant-radio-disabled + span {
        color: rgba(0, 0, 0, 0.25);
        cursor: not-allowed;
      }
      span.ant-radio + * {
        padding-right: 8px;
        padding-left: 8px;
      }
      .ant-radio-button-wrapper {
        position: relative;
        display: inline-block;
        height: 32px;
        margin: 0;
        padding: 0 15px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        line-height: 30px;
        background: #fff;
        border: 1px solid #d9d9d9;
        border-top-width: 1.02px;
        border-left-width: 0;
        cursor: pointer;
        transition: color 0.3s, background 0.3s, border-color 0.3s,
          box-shadow 0.3s;
      }
      .ant-radio-button-wrapper a {
        color: rgba(0, 0, 0, 0.85);
      }
      .ant-radio-button-wrapper > .ant-radio-button {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
      }
      .ant-radio-group-large .ant-radio-button-wrapper {
        height: 40px;
        font-size: 16px;
        line-height: 38px;
      }
      .ant-radio-group-small .ant-radio-button-wrapper {
        height: 24px;
        padding: 0 7px;
        line-height: 22px;
      }
      .ant-radio-button-wrapper:not(:first-child)::before {
        position: absolute;
        top: -1px;
        left: -1px;
        display: block;
        box-sizing: content-box;
        width: 1px;
        height: 100%;
        padding: 1px 0;
        background-color: #d9d9d9;
        transition: background-color 0.3s;
        content: "";
      }
      .ant-radio-button-wrapper:first-child {
        border-left: 1px solid #d9d9d9;
        border-radius: 2px 0 0 2px;
      }
      .ant-radio-button-wrapper:last-child {
        border-radius: 0 2px 2px 0;
      }
      .ant-radio-button-wrapper:first-child:last-child {
        border-radius: 2px;
      }
      .ant-radio-button-wrapper:hover {
        position: relative;
        color: #1890ff;
      }
      .ant-radio-button-wrapper:focus-within {
        box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.12);
      }
      .ant-radio-button-wrapper .ant-radio-inner,
      .ant-radio-button-wrapper input[type="checkbox"],
      .ant-radio-button-wrapper input[type="radio"] {
        width: 0;
        height: 0;
        opacity: 0;
        pointer-events: none;
      }
      .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ) {
        z-index: 1;
        color: #1890ff;
        background: #fff;
        border-color: #1890ff;
      }
      .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        )::before {
        background-color: #1890ff;
      }
      .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):first-child {
        border-color: #1890ff;
      }
      .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):hover {
        color: #40a9ff;
        border-color: #40a9ff;
      }
      .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):hover::before {
        background-color: #40a9ff;
      }
      .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):active {
        color: #096dd9;
        border-color: #096dd9;
      }
      .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):active::before {
        background-color: #096dd9;
      }
      .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):focus-within {
        box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.12);
      }
      .ant-radio-group-solid
        .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ) {
        color: #fff;
        background: #1890ff;
        border-color: #1890ff;
      }
      .ant-radio-group-solid
        .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):hover {
        color: #fff;
        background: #40a9ff;
        border-color: #40a9ff;
      }
      .ant-radio-group-solid
        .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):active {
        color: #fff;
        background: #096dd9;
        border-color: #096dd9;
      }
      .ant-radio-group-solid
        .ant-radio-button-wrapper-checked:not(
          .ant-radio-button-wrapper-disabled
        ):focus-within {
        box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.12);
      }
      .ant-radio-button-wrapper-disabled {
        color: rgba(0, 0, 0, 0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
        cursor: not-allowed;
      }
      .ant-radio-button-wrapper-disabled:first-child,
      .ant-radio-button-wrapper-disabled:hover {
        color: rgba(0, 0, 0, 0.25);
        background-color: #f5f5f5;
        border-color: #d9d9d9;
      }
      .ant-radio-button-wrapper-disabled:first-child {
        border-left-color: #d9d9d9;
      }
      .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
        color: rgba(0, 0, 0, 0.25);
        background-color: #e6e6e6;
        border-color: #d9d9d9;
        box-shadow: none;
      }
      @keyframes antRadioEffect {
        0% {
          transform: scale(1);
          opacity: 0.5;
        }
        100% {
          transform: scale(1.6);
          opacity: 0;
        }
      }
      .ant-radio-group.ant-radio-group-rtl {
        direction: rtl;
      }
      .ant-radio-wrapper.ant-radio-wrapper-rtl {
        margin-right: 0;
        margin-left: 8px;
        direction: rtl;
      }
      .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl {
        border-right-width: 0;
        border-left-width: 1px;
      }
      .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:not(
          :first-child
        )::before {
        right: -1px;
        left: 0;
      }
      .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child {
        border-right: 1px solid #d9d9d9;
        border-radius: 0 2px 2px 0;
      }
      .ant-radio-button-wrapper-checked:not(
          [class*=" ant-radio-button-wrapper-disabled"]
        ).ant-radio-button-wrapper:first-child {
        border-right-color: #40a9ff;
      }
      .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child {
        border-radius: 2px 0 0 2px;
      }
      .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child {
        border-right-color: #d9d9d9;
      }
    
      .ant-spin {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: absolute;
        display: none;
        color: #1890ff;
        text-align: center;
        vertical-align: middle;
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
      }
      .ant-spin-spinning {
        position: static;
        display: inline-block;
        opacity: 1;
      }
      .ant-spin-nested-loading {
        position: relative;
      }
      .ant-spin-nested-loading > div > .ant-spin {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 4;
        display: block;
        width: 100%;
        height: 100%;
        max-height: 400px;
      }
      .ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -10px;
      }
      .ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
        position: absolute;
        top: 50%;
        width: 100%;
        padding-top: 5px;
        text-shadow: 0 1px 2px #fff;
      }
      .ant-spin-nested-loading
        > div
        > .ant-spin.ant-spin-show-text
        .ant-spin-dot {
        margin-top: -20px;
      }
      .ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
        margin: -7px;
      }
      .ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
        padding-top: 2px;
      }
      .ant-spin-nested-loading
        > div
        > .ant-spin-sm.ant-spin-show-text
        .ant-spin-dot {
        margin-top: -17px;
      }
      .ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
        margin: -16px;
      }
      .ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
        padding-top: 11px;
      }
      .ant-spin-nested-loading
        > div
        > .ant-spin-lg.ant-spin-show-text
        .ant-spin-dot {
        margin-top: -26px;
      }
      .ant-spin-container {
        position: relative;
        transition: opacity 0.3s;
      }
      .ant-spin-container::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10;
        display: none \9;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: 0;
        transition: all 0.3s;
        content: "";
        pointer-events: none;
      }
      .ant-spin-blur {
        clear: both;
        opacity: 0.5;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
      }
      .ant-spin-blur::after {
        opacity: 0.4;
        pointer-events: auto;
      }
      .ant-spin-tip {
        color: rgba(0, 0, 0, 0.45);
      }
      .ant-spin-dot {
        position: relative;
        display: inline-block;
        font-size: 20px;
        width: 1em;
        height: 1em;
      }
      .ant-spin-dot-item {
        position: absolute;
        display: block;
        width: 9px;
        height: 9px;
        background-color: #1890ff;
        border-radius: 100%;
        transform: scale(0.75);
        transform-origin: 50% 50%;
        opacity: 0.3;
        animation: antSpinMove 1s infinite linear alternate;
      }
      .ant-spin-dot-item:nth-child(1) {
        top: 0;
        left: 0;
      }
      .ant-spin-dot-item:nth-child(2) {
        top: 0;
        right: 0;
        animation-delay: 0.4s;
      }
      .ant-spin-dot-item:nth-child(3) {
        right: 0;
        bottom: 0;
        animation-delay: 0.8s;
      }
      .ant-spin-dot-item:nth-child(4) {
        bottom: 0;
        left: 0;
        animation-delay: 1.2s;
      }
      .ant-spin-dot-spin {
        transform: rotate(0deg);
        animation: antRotate 1.2s infinite linear;
      }
      .ant-spin-sm .ant-spin-dot {
        font-size: 14px;
      }
      .ant-spin-sm .ant-spin-dot i {
        width: 6px;
        height: 6px;
      }
      .ant-spin-lg .ant-spin-dot {
        font-size: 32px;
      }
      .ant-spin-lg .ant-spin-dot i {
        width: 14px;
        height: 14px;
      }
      .ant-spin.ant-spin-show-text .ant-spin-text {
        display: block;
      }
      @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        .ant-spin-blur {
          background: #fff;
          opacity: 0.5;
        }
      }
      @keyframes antSpinMove {
        to {
          opacity: 1;
        }
      }
      @keyframes antRotate {
        to {
          transform: rotate(360deg);
        }
      }
      .ant-spin-rtl {
        direction: rtl;
      }
      .ant-spin-rtl .ant-spin-dot-spin {
        transform: rotate(-45deg);
        animation-name: antRotateRtl;
      }
      @keyframes antRotateRtl {
        to {
          transform: rotate(-405deg);
        }
      }
    
      .ant-tag {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        display: inline-block;
        height: auto;
        margin-right: 8px;
        padding: 0 7px;
        font-size: 12px;
        line-height: 20px;
        white-space: nowrap;
        background: #fafafa;
        border: 1px solid #d9d9d9;
        border-radius: 2px;
        opacity: 1;
        transition: all 0.3s;
      }
      .ant-tag,
      .ant-tag a,
      .ant-tag a:hover {
        color: rgba(0, 0, 0, 0.85);
      }
      .ant-tag > a:first-child:last-child {
        display: inline-block;
        margin: 0 -8px;
        padding: 0 8px;
      }
      .ant-tag-close-icon {
        margin-left: 3px;
        color: rgba(0, 0, 0, 0.45);
        font-size: 10px;
        cursor: pointer;
        transition: all 0.3s;
      }
      .ant-tag-close-icon:hover {
        color: rgba(0, 0, 0, 0.85);
      }
      .ant-tag-has-color {
        border-color: rgba(0, 0, 0, 0);
      }
      .ant-tag-has-color,
      .ant-tag-has-color a,
      .ant-tag-has-color a:hover,
      .ant-tag-has-color .anticon-close,
      .ant-tag-has-color .anticon-close:hover {
        color: #fff;
      }
      .ant-tag-checkable {
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(0, 0, 0, 0);
        cursor: pointer;
      }
      .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
        color: #1890ff;
      }
      .ant-tag-checkable:active,
      .ant-tag-checkable-checked {
        color: #fff;
      }
      .ant-tag-checkable-checked {
        background-color: #1890ff;
      }
      .ant-tag-checkable:active {
        background-color: #096dd9;
      }
      .ant-tag-hidden {
        display: none;
      }
      .ant-tag-pink {
        color: #c41d7f;
        background: #fff0f6;
        border-color: #ffadd2;
      }
      .ant-tag-pink-inverse {
        color: #fff;
        background: #eb2f96;
        border-color: #eb2f96;
      }
      .ant-tag-magenta {
        color: #c41d7f;
        background: #fff0f6;
        border-color: #ffadd2;
      }
      .ant-tag-magenta-inverse {
        color: #fff;
        background: #eb2f96;
        border-color: #eb2f96;
      }
      .ant-tag-red {
        color: #cf1322;
        background: #fff1f0;
        border-color: #ffa39e;
      }
      .ant-tag-red-inverse {
        color: #fff;
        background: #f5222d;
        border-color: #f5222d;
      }
      .ant-tag-volcano {
        color: #d4380d;
        background: #fff2e8;
        border-color: #ffbb96;
      }
      .ant-tag-volcano-inverse {
        color: #fff;
        background: #fa541c;
        border-color: #fa541c;
      }
      .ant-tag-orange {
        color: #d46b08;
        background: #fff7e6;
        border-color: #ffd591;
      }
      .ant-tag-orange-inverse {
        color: #fff;
        background: #fa8c16;
        border-color: #fa8c16;
      }
      .ant-tag-yellow {
        color: #d4b106;
        background: #feffe6;
        border-color: #fffb8f;
      }
      .ant-tag-yellow-inverse {
        color: #fff;
        background: #fadb14;
        border-color: #fadb14;
      }
      .ant-tag-gold {
        color: #d48806;
        background: #fffbe6;
        border-color: #ffe58f;
      }
      .ant-tag-gold-inverse {
        color: #fff;
        background: #faad14;
        border-color: #faad14;
      }
      .ant-tag-cyan {
        color: #08979c;
        background: #e6fffb;
        border-color: #87e8de;
      }
      .ant-tag-cyan-inverse {
        color: #fff;
        background: #13c2c2;
        border-color: #13c2c2;
      }
      .ant-tag-lime {
        color: #7cb305;
        background: #fcffe6;
        border-color: #eaff8f;
      }
      .ant-tag-lime-inverse {
        color: #fff;
        background: #a0d911;
        border-color: #a0d911;
      }
      .ant-tag-green {
        color: #389e0d;
        background: #f6ffed;
        border-color: #b7eb8f;
      }
      .ant-tag-green-inverse {
        color: #fff;
        background: #52c41a;
        border-color: #52c41a;
      }
      .ant-tag-blue {
        color: #096dd9;
        background: #e6f7ff;
        border-color: #91d5ff;
      }
      .ant-tag-blue-inverse {
        color: #fff;
        background: #1890ff;
        border-color: #1890ff;
      }
      .ant-tag-geekblue {
        color: #1d39c4;
        background: #f0f5ff;
        border-color: #adc6ff;
      }
      .ant-tag-geekblue-inverse {
        color: #fff;
        background: #2f54eb;
        border-color: #2f54eb;
      }
      .ant-tag-purple {
        color: #531dab;
        background: #f9f0ff;
        border-color: #d3adf7;
      }
      .ant-tag-purple-inverse {
        color: #fff;
        background: #722ed1;
        border-color: #722ed1;
      }
      .ant-tag-success {
        color: #52c41a;
        background: #f6ffed;
        border-color: #b7eb8f;
      }
      .ant-tag-processing {
        color: #1890ff;
        background: #e6f7ff;
        border-color: #91d5ff;
      }
      .ant-tag-error {
        color: #ff4d4f;
        background: #fff2f0;
        border-color: #ffccc7;
      }
      .ant-tag-warning {
        color: #faad14;
        background: #fffbe6;
        border-color: #ffe58f;
      }
      .ant-tag > .anticon + span,
      .ant-tag > span + .anticon {
        margin-left: 7px;
      }
      .ant-tag.ant-tag-rtl {
        margin-right: 0;
        margin-left: 8px;
        direction: rtl;
        text-align: right;
      }
      .ant-tag-rtl .ant-tag-close-icon {
        margin-right: 3px;
        margin-left: 0;
      }
      .ant-tag-rtl.ant-tag > .anticon + span,
      .ant-tag-rtl.ant-tag > span + .anticon {
        margin-right: 7px;
        margin-left: 0;
      }
   
      .ant-tooltip {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: absolute;
        z-index: 1070;
        display: block;
        width: -moz-max-content;
        width: max-content;
        width: intrinsic;
        max-width: 250px;
        visibility: visible;
      }
      .ant-tooltip-content {
        position: relative;
      }
      .ant-tooltip-hidden {
        display: none;
      }
      .ant-tooltip-placement-top,
      .ant-tooltip-placement-topLeft,
      .ant-tooltip-placement-topRight {
        padding-bottom: 14.3137085px;
      }
      .ant-tooltip-placement-right,
      .ant-tooltip-placement-rightTop,
      .ant-tooltip-placement-rightBottom {
        padding-left: 14.3137085px;
      }
      .ant-tooltip-placement-bottom,
      .ant-tooltip-placement-bottomLeft,
      .ant-tooltip-placement-bottomRight {
        padding-top: 14.3137085px;
      }
      .ant-tooltip-placement-left,
      .ant-tooltip-placement-leftTop,
      .ant-tooltip-placement-leftBottom {
        padding-right: 14.3137085px;
      }
      .ant-tooltip-inner {
        min-width: 30px;
        min-height: 32px;
        padding: 6px 8px;
        color: #fff;
        text-align: left;
        text-decoration: none;
        word-wrap: break-word;
        background-color: rgba(0, 0, 0, 0.75);
        border-radius: 2px;
        box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
          0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
      }
      .ant-tooltip-arrow {
        position: absolute;
        z-index: 2;
        display: block;
        width: 22px;
        height: 22px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
      }
      .ant-tooltip-arrow-content {
        --antd-arrow-background-color: linear-gradient(
          to right bottom,
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0.75)
        );
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 11.3137085px;
        height: 11.3137085px;
        margin: auto;
        content: "";
        pointer-events: auto;
        border-radius: 0 0 2px;
        pointer-events: none;
      }
      .ant-tooltip-arrow-content::before {
        position: absolute;
        top: -11.3137085px;
        left: -11.3137085px;
        width: 33.9411255px;
        height: 33.9411255px;
        background: var(--antd-arrow-background-color);
        background-repeat: no-repeat;
        background-position: -10px -10px;
        content: "";
        -webkit-clip-path: inset(33% 33%);
        clip-path: inset(33% 33%);
        -webkit-clip-path: path(
          "M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z"
        );
        clip-path: path(
          "M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z"
        );
      }
      .ant-tooltip-placement-top .ant-tooltip-arrow,
      .ant-tooltip-placement-topLeft .ant-tooltip-arrow,
      .ant-tooltip-placement-topRight .ant-tooltip-arrow {
        bottom: 0;
        transform: translateY(100%);
      }
      .ant-tooltip-placement-top .ant-tooltip-arrow-content,
      .ant-tooltip-placement-topLeft .ant-tooltip-arrow-content,
      .ant-tooltip-placement-topRight .ant-tooltip-arrow-content {
        box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
        transform: translateY(-11px) rotate(45deg);
      }
      .ant-tooltip-placement-top .ant-tooltip-arrow {
        left: 50%;
        transform: translateY(100%) translateX(-50%);
      }
      .ant-tooltip-placement-topLeft .ant-tooltip-arrow {
        left: 13px;
      }
      .ant-tooltip-placement-topRight .ant-tooltip-arrow {
        right: 13px;
      }
      .ant-tooltip-placement-right .ant-tooltip-arrow,
      .ant-tooltip-placement-rightTop .ant-tooltip-arrow,
      .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
        left: 0;
        transform: translateX(-100%);
      }
      .ant-tooltip-placement-right .ant-tooltip-arrow-content,
      .ant-tooltip-placement-rightTop .ant-tooltip-arrow-content,
      .ant-tooltip-placement-rightBottom .ant-tooltip-arrow-content {
        box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
        transform: translateX(11px) rotate(135deg);
      }
      .ant-tooltip-placement-right .ant-tooltip-arrow {
        top: 50%;
        transform: translateX(-100%) translateY(-50%);
      }
      .ant-tooltip-placement-rightTop .ant-tooltip-arrow {
        top: 5px;
      }
      .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
        bottom: 5px;
      }
      .ant-tooltip-placement-left .ant-tooltip-arrow,
      .ant-tooltip-placement-leftTop .ant-tooltip-arrow,
      .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
        right: 0;
        transform: translateX(100%);
      }
      .ant-tooltip-placement-left .ant-tooltip-arrow-content,
      .ant-tooltip-placement-leftTop .ant-tooltip-arrow-content,
      .ant-tooltip-placement-leftBottom .ant-tooltip-arrow-content {
        box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
        transform: translateX(-11px) rotate(315deg);
      }
      .ant-tooltip-placement-left .ant-tooltip-arrow {
        top: 50%;
        transform: translateX(100%) translateY(-50%);
      }
      .ant-tooltip-placement-leftTop .ant-tooltip-arrow {
        top: 5px;
      }
      .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
        bottom: 5px;
      }
      .ant-tooltip-placement-bottom .ant-tooltip-arrow,
      .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
      .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
        top: 0;
        transform: translateY(-100%);
      }
      .ant-tooltip-placement-bottom .ant-tooltip-arrow-content,
      .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow-content,
      .ant-tooltip-placement-bottomRight .ant-tooltip-arrow-content {
        box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
        transform: translateY(11px) rotate(225deg);
      }
      .ant-tooltip-placement-bottom .ant-tooltip-arrow {
        left: 50%;
        transform: translateY(-100%) translateX(-50%);
      }
      .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
        left: 13px;
      }
      .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
        right: 13px;
      }
      .ant-tooltip-pink .ant-tooltip-inner {
        background-color: #eb2f96;
      }
      .ant-tooltip-pink .ant-tooltip-arrow-content::before {
        background: #eb2f96;
      }
      .ant-tooltip-magenta .ant-tooltip-inner {
        background-color: #eb2f96;
      }
      .ant-tooltip-magenta .ant-tooltip-arrow-content::before {
        background: #eb2f96;
      }
      .ant-tooltip-red .ant-tooltip-inner {
        background-color: #f5222d;
      }
      .ant-tooltip-red .ant-tooltip-arrow-content::before {
        background: #f5222d;
      }
      .ant-tooltip-volcano .ant-tooltip-inner {
        background-color: #fa541c;
      }
      .ant-tooltip-volcano .ant-tooltip-arrow-content::before {
        background: #fa541c;
      }
      .ant-tooltip-orange .ant-tooltip-inner {
        background-color: #fa8c16;
      }
      .ant-tooltip-orange .ant-tooltip-arrow-content::before {
        background: #fa8c16;
      }
      .ant-tooltip-yellow .ant-tooltip-inner {
        background-color: #fadb14;
      }
      .ant-tooltip-yellow .ant-tooltip-arrow-content::before {
        background: #fadb14;
      }
      .ant-tooltip-gold .ant-tooltip-inner {
        background-color: #faad14;
      }
      .ant-tooltip-gold .ant-tooltip-arrow-content::before {
        background: #faad14;
      }
      .ant-tooltip-cyan .ant-tooltip-inner {
        background-color: #13c2c2;
      }
      .ant-tooltip-cyan .ant-tooltip-arrow-content::before {
        background: #13c2c2;
      }
      .ant-tooltip-lime .ant-tooltip-inner {
        background-color: #a0d911;
      }
      .ant-tooltip-lime .ant-tooltip-arrow-content::before {
        background: #a0d911;
      }
      .ant-tooltip-green .ant-tooltip-inner {
        background-color: #52c41a;
      }
      .ant-tooltip-green .ant-tooltip-arrow-content::before {
        background: #52c41a;
      }
      .ant-tooltip-blue .ant-tooltip-inner {
        background-color: #1890ff;
      }
      .ant-tooltip-blue .ant-tooltip-arrow-content::before {
        background: #1890ff;
      }
      .ant-tooltip-geekblue .ant-tooltip-inner {
        background-color: #2f54eb;
      }
      .ant-tooltip-geekblue .ant-tooltip-arrow-content::before {
        background: #2f54eb;
      }
      .ant-tooltip-purple .ant-tooltip-inner {
        background-color: #722ed1;
      }
      .ant-tooltip-purple .ant-tooltip-arrow-content::before {
        background: #722ed1;
      }
      .ant-tooltip-rtl {
        direction: rtl;
      }
      .ant-tooltip-rtl .ant-tooltip-inner {
        text-align: right;
      }
    
      .ant-popover {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1030;
        font-weight: normal;
        white-space: normal;
        text-align: left;
        cursor: auto;
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
      }
      .ant-popover-content {
        position: relative;
      }
      .ant-popover::after {
        position: absolute;
        background: rgba(255, 255, 255, 0.01);
        content: "";
      }
      .ant-popover-hidden {
        display: none;
      }
      .ant-popover-placement-top,
      .ant-popover-placement-topLeft,
      .ant-popover-placement-topRight {
        padding-bottom: 15.3137085px;
      }
      .ant-popover-placement-right,
      .ant-popover-placement-rightTop,
      .ant-popover-placement-rightBottom {
        padding-left: 15.3137085px;
      }
      .ant-popover-placement-bottom,
      .ant-popover-placement-bottomLeft,
      .ant-popover-placement-bottomRight {
        padding-top: 15.3137085px;
      }
      .ant-popover-placement-left,
      .ant-popover-placement-leftTop,
      .ant-popover-placement-leftBottom {
        padding-right: 15.3137085px;
      }
      .ant-popover-inner {
        background-color: #fff;
        background-clip: padding-box;
        border-radius: 2px;
        box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
          0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
      }
      @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .ant-popover-inner {
          box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
            0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
        }
      }
      .ant-popover-title {
        min-width: 177px;
        min-height: 32px;
        margin: 0;
        padding: 5px 16px 4px;
        color: rgba(0, 0, 0, 0.85);
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
      }
      .ant-popover-inner-content {
        padding: 12px 16px;
        color: rgba(0, 0, 0, 0.85);
      }
      .ant-popover-message {
        display: flex;
        padding: 4px 0 12px;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
      }
      .ant-popover-message-icon {
        display: inline-block;
        margin-right: 8px;
        color: #faad14;
        font-size: 14px;
      }
      .ant-popover-buttons {
        margin-bottom: 4px;
        text-align: right;
      }
      .ant-popover-buttons button:not(:first-child) {
        margin-left: 8px;
      }
      .ant-popover-arrow {
        position: absolute;
        display: block;
        width: 22px;
        height: 22px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
      }
      .ant-popover-arrow-content {
        --antd-arrow-background-color: #fff;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 11.3137085px;
        height: 11.3137085px;
        margin: auto;
        content: "";
        pointer-events: auto;
        border-radius: 0 0 2px;
        pointer-events: none;
      }
      .ant-popover-arrow-content::before {
        position: absolute;
        top: -11.3137085px;
        left: -11.3137085px;
        width: 33.9411255px;
        height: 33.9411255px;
        background: var(--antd-arrow-background-color);
        background-repeat: no-repeat;
        background-position: -10px -10px;
        content: "";
        -webkit-clip-path: inset(33% 33%);
        clip-path: inset(33% 33%);
        -webkit-clip-path: path(
          "M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z"
        );
        clip-path: path(
          "M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z"
        );
      }
      .ant-popover-placement-top .ant-popover-arrow,
      .ant-popover-placement-topLeft .ant-popover-arrow,
      .ant-popover-placement-topRight .ant-popover-arrow {
        bottom: 0;
        transform: translateY(100%);
      }
      .ant-popover-placement-top .ant-popover-arrow-content,
      .ant-popover-placement-topLeft .ant-popover-arrow-content,
      .ant-popover-placement-topRight .ant-popover-arrow-content {
        box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
        transform: translateY(-11px) rotate(45deg);
      }
      .ant-popover-placement-top .ant-popover-arrow {
        left: 50%;
        transform: translateY(100%) translateX(-50%);
      }
      .ant-popover-placement-topLeft .ant-popover-arrow {
        left: 16px;
      }
      .ant-popover-placement-topRight .ant-popover-arrow {
        right: 16px;
      }
      .ant-popover-placement-right .ant-popover-arrow,
      .ant-popover-placement-rightTop .ant-popover-arrow,
      .ant-popover-placement-rightBottom .ant-popover-arrow {
        left: 0;
        transform: translateX(-100%);
      }
      .ant-popover-placement-right .ant-popover-arrow-content,
      .ant-popover-placement-rightTop .ant-popover-arrow-content,
      .ant-popover-placement-rightBottom .ant-popover-arrow-content {
        box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
        transform: translateX(11px) rotate(135deg);
      }
      .ant-popover-placement-right .ant-popover-arrow {
        top: 50%;
        transform: translateX(-100%) translateY(-50%);
      }
      .ant-popover-placement-rightTop .ant-popover-arrow {
        top: 12px;
      }
      .ant-popover-placement-rightBottom .ant-popover-arrow {
        bottom: 12px;
      }
      .ant-popover-placement-bottom .ant-popover-arrow,
      .ant-popover-placement-bottomLeft .ant-popover-arrow,
      .ant-popover-placement-bottomRight .ant-popover-arrow {
        top: 0;
        transform: translateY(-100%);
      }
      .ant-popover-placement-bottom .ant-popover-arrow-content,
      .ant-popover-placement-bottomLeft .ant-popover-arrow-content,
      .ant-popover-placement-bottomRight .ant-popover-arrow-content {
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.06);
        transform: translateY(11px) rotate(-135deg);
      }
      .ant-popover-placement-bottom .ant-popover-arrow {
        left: 50%;
        transform: translateY(-100%) translateX(-50%);
      }
      .ant-popover-placement-bottomLeft .ant-popover-arrow {
        left: 16px;
      }
      .ant-popover-placement-bottomRight .ant-popover-arrow {
        right: 16px;
      }
      .ant-popover-placement-left .ant-popover-arrow,
      .ant-popover-placement-leftTop .ant-popover-arrow,
      .ant-popover-placement-leftBottom .ant-popover-arrow {
        right: 0;
        transform: translateX(100%);
      }
      .ant-popover-placement-left .ant-popover-arrow-content,
      .ant-popover-placement-leftTop .ant-popover-arrow-content,
      .ant-popover-placement-leftBottom .ant-popover-arrow-content {
        box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
        transform: translateX(-11px) rotate(-45deg);
      }
      .ant-popover-placement-left .ant-popover-arrow {
        top: 50%;
        transform: translateX(100%) translateY(-50%);
      }
      .ant-popover-placement-leftTop .ant-popover-arrow {
        top: 12px;
      }
      .ant-popover-placement-leftBottom .ant-popover-arrow {
        bottom: 12px;
      }
      .ant-popover-pink .ant-popover-inner {
        background-color: #eb2f96;
      }
      .ant-popover-pink .ant-popover-arrow-content {
        background-color: #eb2f96;
      }
      .ant-popover-magenta .ant-popover-inner {
        background-color: #eb2f96;
      }
      .ant-popover-magenta .ant-popover-arrow-content {
        background-color: #eb2f96;
      }
      .ant-popover-red .ant-popover-inner {
        background-color: #f5222d;
      }
      .ant-popover-red .ant-popover-arrow-content {
        background-color: #f5222d;
      }
      .ant-popover-volcano .ant-popover-inner {
        background-color: #fa541c;
      }
      .ant-popover-volcano .ant-popover-arrow-content {
        background-color: #fa541c;
      }
      .ant-popover-orange .ant-popover-inner {
        background-color: #fa8c16;
      }
      .ant-popover-orange .ant-popover-arrow-content {
        background-color: #fa8c16;
      }
      .ant-popover-yellow .ant-popover-inner {
        background-color: #fadb14;
      }
      .ant-popover-yellow .ant-popover-arrow-content {
        background-color: #fadb14;
      }
      .ant-popover-gold .ant-popover-inner {
        background-color: #faad14;
      }
      .ant-popover-gold .ant-popover-arrow-content {
        background-color: #faad14;
      }
      .ant-popover-cyan .ant-popover-inner {
        background-color: #13c2c2;
      }
      .ant-popover-cyan .ant-popover-arrow-content {
        background-color: #13c2c2;
      }
      .ant-popover-lime .ant-popover-inner {
        background-color: #a0d911;
      }
      .ant-popover-lime .ant-popover-arrow-content {
        background-color: #a0d911;
      }
      .ant-popover-green .ant-popover-inner {
        background-color: #52c41a;
      }
      .ant-popover-green .ant-popover-arrow-content {
        background-color: #52c41a;
      }
      .ant-popover-blue .ant-popover-inner {
        background-color: #1890ff;
      }
      .ant-popover-blue .ant-popover-arrow-content {
        background-color: #1890ff;
      }
      .ant-popover-geekblue .ant-popover-inner {
        background-color: #2f54eb;
      }
      .ant-popover-geekblue .ant-popover-arrow-content {
        background-color: #2f54eb;
      }
      .ant-popover-purple .ant-popover-inner {
        background-color: #722ed1;
      }
      .ant-popover-purple .ant-popover-arrow-content {
        background-color: #722ed1;
      }
      .ant-popover-rtl {
        direction: rtl;
        text-align: right;
      }
      .ant-popover-rtl .ant-popover-message-icon {
        margin-right: 0;
        margin-left: 8px;
      }
      .ant-popover-rtl .ant-popover-message-title {
        padding-left: 16px;
      }
      .ant-popover-rtl .ant-popover-buttons {
        text-align: left;
      }
      .ant-popover-rtl .ant-popover-buttons button {
        margin-right: 8px;
        margin-left: 0;
      }
    
      @keyframes antCheckboxEffect {
        0% {
          transform: scale(1);
          opacity: 0.5;
        }
        100% {
          transform: scale(1.6);
          opacity: 0;
        }
      }
      .ant-checkbox {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        position: relative;
        top: 0.2em;
        line-height: 1;
        white-space: nowrap;
        outline: none;
        cursor: pointer;
      }
      .ant-checkbox-wrapper:hover .ant-checkbox-inner,
      .ant-checkbox:hover .ant-checkbox-inner,
      .ant-checkbox-input:focus + .ant-checkbox-inner {
        border-color: #1890ff;
      }
      .ant-checkbox-checked::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid #1890ff;
        border-radius: 2px;
        visibility: hidden;
        animation: antCheckboxEffect 0.36s ease-in-out;
        animation-fill-mode: backwards;
        content: "";
      }
      .ant-checkbox:hover::after,
      .ant-checkbox-wrapper:hover .ant-checkbox::after {
        visibility: visible;
      }
      .ant-checkbox-inner {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        width: 16px;
        height: 16px;
        direction: ltr;
        background-color: #fff;
        border: 1px solid #d9d9d9;
        border-radius: 2px;
        border-collapse: separate;
        transition: all 0.3s;
      }
      .ant-checkbox-inner::after {
        position: absolute;
        top: 50%;
        left: 21.5%;
        display: table;
        width: 5.71428571px;
        height: 9.14285714px;
        border: 2px solid #fff;
        border-top: 0;
        border-left: 0;
        transform: rotate(45deg) scale(0) translate(-50%, -50%);
        opacity: 0;
        transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
        content: " ";
      }
      .ant-checkbox-input {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        cursor: pointer;
        opacity: 0;
      }
      .ant-checkbox-checked .ant-checkbox-inner::after {
        position: absolute;
        display: table;
        border: 2px solid #fff;
        border-top: 0;
        border-left: 0;
        transform: rotate(45deg) scale(1) translate(-50%, -50%);
        opacity: 1;
        transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
        content: " ";
      }
      .ant-checkbox-checked .ant-checkbox-inner {
        background-color: #1890ff;
        border-color: #1890ff;
      }
      .ant-checkbox-disabled {
        cursor: not-allowed;
      }
      .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after {
        border-color: rgba(0, 0, 0, 0.25);
        animation-name: none;
      }
      .ant-checkbox-disabled .ant-checkbox-input {
        cursor: not-allowed;
        pointer-events: none;
      }
      .ant-checkbox-disabled .ant-checkbox-inner {
        background-color: #f5f5f5;
        border-color: #d9d9d9 !important;
      }
      .ant-checkbox-disabled .ant-checkbox-inner::after {
        border-color: #f5f5f5;
        border-collapse: separate;
        animation-name: none;
      }
      .ant-checkbox-disabled + span {
        color: rgba(0, 0, 0, 0.25);
        cursor: not-allowed;
      }
      .ant-checkbox-disabled:hover::after,
      .ant-checkbox-wrapper:hover .ant-checkbox-disabled::after {
        visibility: hidden;
      }
      .ant-checkbox-wrapper {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        display: inline-flex;
        align-items: baseline;
        line-height: unset;
        cursor: pointer;
      }
      .ant-checkbox-wrapper::after {
        display: inline-block;
        width: 0;
        overflow: hidden;
        content: " ";
      }
      .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled {
        cursor: not-allowed;
      }
      .ant-checkbox-wrapper + .ant-checkbox-wrapper {
        margin-left: 8px;
      }
      .ant-checkbox-wrapper.ant-checkbox-wrapper-in-form-item
        input[type="checkbox"] {
        width: 14px;
        height: 14px;
      }
      .ant-checkbox + span {
        padding-right: 8px;
        padding-left: 8px;
      }
      .ant-checkbox-group {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: rgba(0, 0, 0, 0.85);
        font-size: 14px;
        font-variant: tabular-nums;
        line-height: 1.5715;
        list-style: none;
        font-feature-settings: "tnum";
        display: inline-block;
      }
      .ant-checkbox-group-item {
        margin-right: 8px;
      }
      .ant-checkbox-group-item:last-child {
        margin-right: 0;
      }
      .ant-checkbox-group-item + .ant-checkbox-group-item {
        margin-left: 0;
      }
      .ant-checkbox-indeterminate .ant-checkbox-inner {
        background-color: #fff;
        border-color: #d9d9d9;
      }
      .ant-checkbox-indeterminate .ant-checkbox-inner::after {
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        background-color: #1890ff;
        border: 0;
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        content: " ";
      }
      .ant-checkbox-indeterminate.ant-checkbox-disabled
        .ant-checkbox-inner::after {
        background-color: rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0.25);
      }
      .ant-checkbox-rtl {
        direction: rtl;
      }
      .ant-checkbox-group-rtl .ant-checkbox-group-item {
        margin-right: 0;
        margin-left: 8px;
      }
      .ant-checkbox-group-rtl .ant-checkbox-group-item:last-child {
        margin-left: 0 !important;
      }
      .ant-checkbox-group-rtl
        .ant-checkbox-group-item
        + .ant-checkbox-group-item {
        margin-left: 8px;
      }
   
      .clearly-login-pop {
        user-select: none;
        position: fixed;
        right: 32px;
        top: 32px;
        width: 350px;
        border-radius: 16px;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.2);
        z-index: 2147483648;
        padding: 20px;
      }
      .clearly-login-pop-head {
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .clearly-login-pop-head i {
        cursor: pointer;
      }
      .clearly-login-pop-title {
        font-size: 16px;
        font-weight: bold;
      }
      .clearly-login-pop .tcell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 50px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
      }
      .clearly-login-pop .tcell:first-child {
        border-top: 0;
      }
      .clearly-login-pop .tcell .form-label {
        box-sizing: border-box;
        display: flex;
        align-items: flex-start;
        font-size: 13px;
        color: rgba(0, 0, 0, 0.8);
      }
      .clearly-login-pop .tcell .form-label i {
        margin-right: 10px;
      }
      .clearly-login-pop .tcell .form-label .value {
        margin-left: 8px;
        font-size: 10px;
        color: rgba(0, 0, 0, 0.6);
      }
      .clearly-login-pop .tcell .form-group {
        margin-bottom: 0;
      }
      .clearly-login-pop .btn-group {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-top: 12px;
      }
      .clearly-login-pop .btn-submit {
        height: 52px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        text-decoration: none;
        background-color: #333;
        color: #fff;
        border: 1px solid #333;
        font-size: 13px;
        height: 34px;
        padding: 0 10px;
      }
      .clearly-login-pop input.account-input {
        border-radius: 6px;
        font-size: 13px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        height: 34px;
        padding: 0 12px;
        appearance: none;
        background: none;
        outline: none;
        color: rgba(0, 0, 0, 0.9);
        min-width: 200px;
      }

      #clearly-edit-pop {
        background-color: rgba(0, 0, 0, 0.9);
        border-radius: 8px;
        padding: 5px 12px;
        color: #fff;
        font-size: 14px;
        display: inline-block;
        position: relative;
        cursor: pointer;
        user-select: none;
        position: absolute;
        z-index: 999999999;
      }
      #clearly-edit-pop .clearly-edit-pop-remove {
        cursor: pointer;
      }
      #clearly-edit-pop:after {
        content: "";
        display: block;
        border-style: solid;
        border-width: 5px;
        border-color: transparent;
        border-top-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        margin-left: -5px;
        bottom: -10px;
        left: 50%;
      }

      :root {
        --color-yellow: #ffd76f;
        --color-green: #34ffb6;
        --color-black: rgba(0, 0, 0, 0.9);
        --color-border: rgba(255, 255, 255, 0.1);
        --color-icon: rgba(255, 255, 255, 0.6);
        --color-icon-hover: rgba(255, 255, 255, 0.8);
        --color-text-gray: rgba(255, 255, 255, 0.6);
        --color-placeholder: rgba(255, 255, 255, 0.6);
        --color-light-hover: rgba(255, 255, 255, 0.1);
      }
      .clearly-mark {
        background-color: var(--color-yellow);
        color: black;
        cursor: pointer;
      }
      .clearly-image-collected {
        border-left: 8px solid var(--color-yellow);
      }
      #clearly-image-popup-icon,
      #clearly-popup-icon {
        background: #1c1a1a;
        position: absolute;
        border-radius: 8px;
        border: 1px solid #c1c1c1;
        cursor: pointer;
        z-index: 2147483648;
        overflow: hidden;
        display: flex;
        align-items: center;
        transition: all 0.2s linear;
      }
      #clearly-image-popup-icon:hover,
      #clearly-popup-icon:hover {
        background-color: #000;
      }
      #clearly-image-popup-icon .clearly-popup-icon-img,
      #clearly-popup-icon .clearly-popup-icon-img {
        width: 32px;
        height: 32px;
        background-size: 24px 24px;
        background-repeat: no-repeat;
        background-position: center;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGrSURBVHgB7ZjRUcMwDIYVjgGyQbsBGSFswAbpJskGsEHYADbIMQHZIOkEhQmEfPZxIaRK5To2x+m700MTS9Xv2JZtAEVRFEVR/imImBuDDckgEC7RiqwgK8n2syY92Uj2SvaWZdno/A6Tth/0/Ali4nq5JjuhjJpsP3s2QExcAgOGQyzgFjyhPzNDpSPjxnjv7Oja3YEdYpvOi1Uu6PmOrGR8m1BfwFfAM5P8y4UxmiQCTM8yyQ+mhwWxuhQCOkZAK4xVRhWAv5e9OYUwpIl5ukaAdBXiEjRFqAc592BXpdHEACFSASXzzid58BT9zQ3I2DHvRkiAVEDaArSAVADHERIQUsAOEiAVIF4ltkYq4JN5J64BIZAK4Ja8PXjgimMl2YJ4YyrtSiUuQQj5HKaVGDc+gq7thTphrBx/bstF/l7Meuyqr0BtH2e+FcRg5SuYzVmx4p8vJB/vPIx24q0d4lu02+V84mN+12d84/T+RESB8puIczSQAgxzK9FAStCO58ZDyIAey+6mUEIPaA/870zSbcjEg10tLoF2Ahszp7U/t49SFEVRlOR8AQxUBgYyQX2vAAAAAElFTkSuQmCC");
      }
      #clearly-image-popup-icon .clearly-popup-text,
      #clearly-popup-icon .clearly-popup-text {
        padding: 0 10px;
        color: rgba(255, 255, 255, 0.8);
      }
      #clearly-video-icon {
        cursor: pointer;
        background: #2c2828;
        display: inline-block;
        align-items: center;
        margin: 0 8px;
        border-radius: 18px;
        height: 36px;
        position: relative;
        box-sizing: border-box;
        border: 2px solid rgba(255, 255, 255, 0.5);
        transition: all 0.2s linear;
      }
      #clearly-video-icon:hover {
        background-color: #000;
      }
      #clearly-video-icon .clearly-popup-icon-img {
        position: absolute;
        left: 4px;
        top: 50%;
        margin-top: -12px;
        width: 24px;
        height: 24px;
        background-size: contain;
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGrSURBVHgB7ZjRUcMwDIYVjgGyQbsBGSFswAbpJskGsEHYADbIMQHZIOkEhQmEfPZxIaRK5To2x+m700MTS9Xv2JZtAEVRFEVR/imImBuDDckgEC7RiqwgK8n2syY92Uj2SvaWZdno/A6Tth/0/Ali4nq5JjuhjJpsP3s2QExcAgOGQyzgFjyhPzNDpSPjxnjv7Oja3YEdYpvOi1Uu6PmOrGR8m1BfwFfAM5P8y4UxmiQCTM8yyQ+mhwWxuhQCOkZAK4xVRhWAv5e9OYUwpIl5ukaAdBXiEjRFqAc592BXpdHEACFSASXzzid58BT9zQ3I2DHvRkiAVEDaArSAVADHERIQUsAOEiAVIF4ltkYq4JN5J64BIZAK4Ja8PXjgimMl2YJ4YyrtSiUuQQj5HKaVGDc+gq7thTphrBx/bstF/l7Meuyqr0BtH2e+FcRg5SuYzVmx4p8vJB/vPIx24q0d4lu02+V84mN+12d84/T+RESB8puIczSQAgxzK9FAStCO58ZDyIAey+6mUEIPaA/870zSbcjEg10tLoF2Ahszp7U/t49SFEVRlOR8AQxUBgYyQX2vAAAAAElFTkSuQmCC");
      }
      #clearly-video-icon .clearly-popup-text {
        padding-left: 32px;
        padding-right: 12px;
        font-family: sans-serif;
        font-size: 14px;
        line-height: 32px;
        height: 32px;
        color: #ffffff;
      }
  
      .tag-pane {
        position: absolute;
        width: 160px;
        border-radius: 16px;
        top: 40px;
        right: 0;
        padding-bottom: 8px;
        overflow: hidden;
        border: 1px solid var(--color-border);
        background-color: var(--color-bg);
        z-index: 99999999;
      }
      .tag-pane .item {
        height: 30px;
        line-height: 30px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        color: var(--color-text);
        white-space: nowrap;
      }
      .tag-pane .item:hover {
        cursor: pointer;
        background-color: var(--color-hover);
      }
      .tag-pane .tag-search-input-container {
        padding: 16px;
      }
      .tag-pane .tag-search-input {
        display: block;
        height: 35px;
        line-height: 35px;
        border: 1px solid var(--color-yellow);
        padding-left: 12px;
        border-radius: 8px;
        box-sizing: border-box;
        width: 100%;
        color: var(--color-text);
        background-color: transparent;
        outline: none;
      }
      .tag-pane .tag-search-input::placeholder {
        color: var(--color-placeholder);
      }
      .tag-pane .icon-check,
      .tag-pane .icon-add {
        font-size: 18px;
        margin-right: 6px;
        color: var(--color-icon);
      }
      .tag-pane .icon-checked {
        color: var(--color-yellow);
      }
    
      .collect-pop {
        position: fixed;
        border: 1px solid var(--color-gray-border);
        right: 32px;
        top: 32px;
        border-radius: 16px;
        background-color: var(--color-black);
        z-index: 2147483648;
      }
      .collect-pop .main {
        height: 60px;
        line-height: 60px;
        display: flex;
        align-items: center;
        color: #fff;
      }
      .collect-pop .save {
        padding: 0 20px;
        font-size: 16px;
        display: flex;
        align-items: center;
      }
      .collect-pop .save .icon-success {
        color: var(--color-green);
        font-size: 24px;
        margin-right: 8px;
      }
      .collect-pop .icon-tag {
        cursor: pointer;
        font-size: 20px;
        margin-left: 24px;
        margin-right: 20px;
        color: var(--color-icon);
      }
      .collect-pop .icon-tag:hover {
        color: var(--color-icon-hover);
      }
      .collect-pop .icon-more {
        font-size: 20px;
        cursor: pointer;
        color: var(--color-icon);
      }
      .collect-pop .icon-more:hover {
        color: var(--color-icon-hover);
      }
      .collect-pop .read {
        border-left: 1px solid var(--color-gray-border);
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .collect-pop .read:hover {
        background: var(--color-hover);
        cursor: pointer;
      }
      .collect-pop .icon-read {
        font-size: 20px;
        color: var(--color-yellow);
      }
      .collect-pop .tag-pane {
        position: absolute;
        width: 160px;
        border-radius: 16px;
        top: 75px;
        right: 0;
        padding-bottom: 8px;
        overflow: hidden;
        background-color: var(--color-black);
      }
      .collect-pop .tag-pane .item {
        height: 30px;
        line-height: 30px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        color: #fff;
        white-space: nowrap;
      }
      .collect-pop .tag-pane .tag-search-input-container {
        padding: 16px;
      }
      .collect-pop .tag-pane .tag-search-input {
        display: block;
        height: 35px;
        line-height: 35px;
        border: 1px solid var(--color-yellow);
        padding-left: 12px;
        border-radius: 8px;
        box-sizing: border-box;
        width: 100%;
        color: #fff;
        background-color: transparent;
      }
      .collect-pop .tag-pane .tag-search-input::placeholder {
        color: var(--color-placeholder);
      }
      .collect-pop .tag-pane .icon-check,
      .collect-pop .tag-pane .icon-add {
        font-size: 18px;
        margin-right: 6px;
        color: var(--color-icon);
      }
      .collect-pop .tag-pane .icon-checked {
        color: var(--color-yellow);
      }
      .collect-pop .tag-pane .item:hover {
        cursor: pointer;
        background-color: var(--color-hover);
      }
      .collect-pop .more-pane {
        position: absolute;
        width: 160px;
        border-radius: 16px;
        padding: 8px 0;
        top: 75px;
        right: 0;
        background-color: var(--color-black);
      }
      .collect-pop .more-pane .item {
        height: 30px;
        line-height: 30px;
        padding-left: 16px;
        font-size: 13px;
        cursor: pointer;
        display: flex;
        align-items: center;
        color: var(--color-text-gray);
      }
      .collect-pop .more-pane .item:hover {
        background: var(--color-hover);
      }
      .collect-pop .more-pane .item i {
        color: var(--color-icon);
        font-size: 16px;
        margin-right: 6px;
      }

      .toast {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        z-index: 2147483647;
        animation: fadeindown linear 0.2s;
      }

      .toast.hide {
        animation: fadeoutup linear 0.2s;
      }

      @keyframes fadeindown {
        from {
          opacity: 0;
          transform: translateY(-60px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes fadeoutup {
        from {
          opacity: 1;
          transform: translateY(0);
        }

        to {
          opacity: 0;
          transform: translateY(-60px);
        }
      }

      .toast-message {
        margin-top: 24px;
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(2px);
        padding: 12px 14px;
        color: #ffffff;
        border-radius: 8px;
        position: relative;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
          sans-serif;
      }
